/* Additional CSS for registration form */
.form-row {
    display: flex;
    gap: 15px;
}

.half-width {
    flex: 1;
}

/* Remove labels and use placeholders only for registration form */
#registrationForm .form-group {
    margin-bottom: 20px;
}

#registrationForm .form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    background: white;
}

#registrationForm .form-input:focus {
    outline: none;
    border-color: var(--accent);
}

#registrationForm select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

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

.password-strength.show {
    display: block;
}

.strength-bar {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin-bottom: 4px;
    overflow: hidden;
    position: relative;
}

.strength-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #e74c3c;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.strength-bar.weak::before {
    width: 33%;
    background: #e74c3c;
}

.strength-bar.medium::before {
    width: 66%;
    background: #f39c12;
}

.strength-bar.strong::before {
    width: 100%;
    background: #27ae60;
}

.strength-text {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.strength-text::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
}

.strength-text.weak {
    color: #e74c3c;
}

.strength-text.weak::before {
    background: #e74c3c;
}

.strength-text.medium {
    color: #f39c12;
}

.strength-text.medium::before {
    background: #f39c12;
}

.strength-text.strong {
    color: #27ae60;
}

.strength-text.strong::before {
    background: #27ae60;
}

/* Mobile responsive for registration form */
@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}