/* reset_password.php specific styles */
.auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-container {
    max-width: 500px;
    width: 100%;
    padding: 50px;
    background: var(--secondary);
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent);
}

.auth-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 10px;
}

.instructions {
    background: rgba(242, 178, 0, 0.1);
    border: 1px solid rgba(242, 178, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
    font-size: 14px;
    color: var(--text-light);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--accent);
    border: none;
    border-radius: 10px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #ffcc00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 178, 0, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.auth-links {
    text-align: center;
    margin-top: 25px;
    color: var(--text-light);
    font-size: 15px;
}

.auth-links a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.auth-links a:hover {
    color: #ffcc00;
    text-decoration: underline;
}

.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
}

.toggle-password:hover {
    color: var(--text);
}

.password-strength {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    width: 0%;
    transition: width 0.3s, background-color 0.3s;
}

.strength-weak { width: 33%; background-color: #f44336; }
.strength-medium { width: 66%; background-color: #ff9800; }
.strength-strong { width: 100%; background-color: #4CAF50; }

@media (max-width: 600px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .auth-container {
        padding: 30px 25px;
        margin: 10px;
    }
    
    .auth-title {
        font-size: 28px;
    }
    
    .auth-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .auth-container {
        padding: 25px 20px;
    }
    
    .auth-title {
        font-size: 24px;
    }
    
    .nav-left {
        font-size: 18px;
    }
    
    .film-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}
