:root {
    --primary-color: #0e1e35;
    --secondary-color: #f37312;
}

body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(rgba(14, 30, 53, 0.85), rgba(14, 30, 53, 0.85)),
        url('../../img/landing/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.nav-link {
    color: #fff;
}

.nav-link.active,
.nav-link:hover {
    color: var(--secondary-color) !important;
    font-weight: 700;
    position: relative;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.register-wrapper {
    min-height: 100vh;
    padding-top: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-card {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    animation: fadeInUp 0.8s ease-out;
    color: #fff;
}

.form-floating label {
    color: #000;
    font-weight: 500;
}

.form-control {
    height: 52px;
    border-radius: 12px;
}

.btn-submit {
    width: 100%;
    margin-top: 1.5rem;
    background-color: var(--secondary-color);
    border: none;
    font-weight: 600;
    padding: 12px;
    border-radius: 10px;
}

.btn-submit:hover {
    background-color: #d4640f;
}

.login-link a {
    color: #fff;
    text-decoration: none;
}

.login-link a:hover {
    color: var(--secondary-color);
}

.invalid-feedback {
    display: block;
}

.modal-content {
    border-radius: 12px;
}

.city-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
}

.city-option {
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.city-option:last-child {
    border-bottom: none;
}

.city-option:hover,
.city-option.highlighted {
    background: rgba(255, 215, 0, 0.2);
    color: white;
}

.city-loading {
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-style: italic;
}

.city-no-results {
            padding: 12px 16px;
            color: rgba(255, 255, 255, 0.6);
            text-align: center;
            font-style: italic;
}

.password-strength {
    font-size: 12px;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.7);
}

.strength-weak {
    color: #ff6b6b;
}

.strength-medium {
    color: #feca57;
}

.strength-strong {
    color: #48dbfb;
}

.password-match {
    font-size: 12px;
    margin-top: 5px;
}

.match-success {
    color: #48dbfb;
}

.match-error {
    color: #ff6b6b;
}

/* Animación de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}