/* Additional styles for Signup Page - Add to login.css */

/* Password Strength Indicator */
.password-strength {
    margin-top: 10px;
}

.strength-bar {
    width: 100%;
    height: 4px;
    background: rgba(138, 43, 226, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 5px;
}

.strength-bar-fill {
    height: 100%;
    width: 0%;
    background: #ef4444;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.strength-text {
    display: block;
    font-size: 0.85rem;
    color: #b8b8b8;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Terms Link */
.link-terms {
    color: #a78bfa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-terms:hover {
    color: #8b5cf6;
    text-decoration: underline;
}

/* Adjust form-options for signup */
.form-options + .form-options {
    margin-top: -15px;
    margin-bottom: 25px;
}

/* Longer card for signup */
.login-card {
    max-height: 95vh;
    overflow-y: auto;
}

.login-card::-webkit-scrollbar {
    width: 6px;
}

.login-card::-webkit-scrollbar-track {
    background: rgba(138, 43, 226, 0.1);
    border-radius: 10px;
}

.login-card::-webkit-scrollbar-thumb {
    background: rgba(138, 43, 226, 0.5);
    border-radius: 10px;
}

.login-card::-webkit-scrollbar-thumb:hover {
    background: rgba(138, 43, 226, 0.7);
}