.login-form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    @media (min-width: 768px) {
        padding: 2rem;
    }
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.text-darkblue {
    color: #004e70 !important;
}
.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    margin-bottom: 1rem;
}
.form-control:focus {
    border-color: #4ba6de;
    outline: none;
}
.btn-submit {
    background: #8DBA38;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 200px;
}
.btn-submit:hover {
    background: #7a9e2f;
    transform: translateY(-1px);
}
.password-requirements {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #585856;
}
.password-requirements li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}
.password-requirements li img {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}
.password-requirements li div {
    display: flex;
    align-items: center;
}
.wave-divider {
    position: relative;
    height: 60px;
    overflow: hidden;
   
    z-index: 1000;
    background: transparent;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    
}

.wave-divider.top {
    transform: rotate(180deg);
    top: -52px;
}

.wave-divider.neutral {
    transform: rotate(180deg);
    top:0;
}

.wave-divider.bottom {
    transform: rotate(0deg);
    top: 53px;
}

.wave-divider.white {
    background: transparent;
}

.btn-login {
    background: #8DBA38;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-login:hover {
    background: #7a9e2f;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .wave-divider {
        height: 40px;
    }
    .wave-divider.top {
        top: -35px;
    }
    .wave-divider.bottom {
        top: 34px;
    }
}

@media (max-width: 480px) {
    .wave-divider {
        height: 30px;
    }
    .wave-divider.top {
        top: -25px;
    }
    .wave-divider.bottom {
        top: 20px;
    }
}

@media (max-width: 375px) {
    .wave-divider {
        height: 25px;
    }
    .wave-divider.top {
        top: -15px;
    }
    .wave-divider.bottom {
        top: 18px;
    }
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(0,78,112,0.9) 0%, rgba(6, 65, 103, 0.8) 100%), url('/static/assets/images/redesign/analista-datos-landing.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}





.hero-gradient > * {
    position: relative;
    z-index: 2;
}


.hero-heading {
    font-size: 2rem; 
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: bold;
}


@media (min-width: 768px) {
    .hero-heading {
        font-size: 50px;
        letter-spacing: 12px;
        line-height: 1.2;
    }
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}





.text-lightblue {
    color: #4ba6de !important;
}

.text-white {
    color: #ffffff !important;
}

.btn-tutorial {
    color: #004e70 !important;
}
.btn-person{
    background-color: #1d98e0;
}

.features-card-mobile {
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .features-card-mobile {
        margin-top: 0;
    }
}

.community-card {
    position: relative;
}

.spaceTobreathe {
    margin-top: 50px;
    margin-bottom: 50px;
}


input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #d1d1d1;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    margin-right: 10px;
    outline: none;
}

input[type="checkbox"]:checked {
    background-color: #8DBA38;
    border-color: #8DBA38;
}

input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
}

.check-item {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.check-item label {
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    margin-left: 0px;
}


#countryCode {
color: #9ca3af;
padding-left: 0.5em;
}


#countryCode:focus,
#countryCode:valid {
color: #000000;
}

#countryCode option:disabled {
color: #9ca3af !important;
}

  /* Footer styling */
  footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

footer ul li {
    margin: 0;
}

footer ul li a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

footer ul li a:hover {
    opacity: 0.8;
}

/* Mobile responsive */
@media (max-width: 640px) {
    footer ul {
        gap: 1rem;
        flex-direction: column;
    }
}