/* Global Styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}


/* Form Styles */
.form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.8rem 1rem;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    box-shadow: none;
}

.form-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Button Styles */
.btn-primary {
    background-color: #00b4d8;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0096c7;
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    /* Ajuste o path conforme seu projeto */
    background:
    url(../images/circulos.svg) no-repeat center center, linear-gradient(45deg, rgb(0 4 40 / 0%), rgb(0 78 146 / 0%));
    background-size: cover, cover;
  }
  
  .hero-section::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: url('data:image/svg+xml,<svg ...') no-repeat center;
    opacity: 0.1; 
  }
  

.hero-content {
    position: relative;
    z-index: 1;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

h1.display-3.fw-bold.text-white {
    background-image: linear-gradient(to bottom, #FFFFFF 50%, #999999 118%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .login-content {
        padding: 1rem;
        gap: 0;
    }
    
    .hero-section {
        display: none;
    }
}

/* Links */
a {
    color: #00b4d8;
}

a:hover {
    color: #0096c7;
}