.auth-form {
    max-width: 400px;
    width: 100%;
}

.auth-form-group {
    margin-bottom: 20px;
}

.auth-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #c9a961;
    font-weight: 400;
    font-size: 0.9em;
}

.auth-form-group input[type="email"],
.auth-form-group input[type="password"],
.auth-form-group input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    background: rgba(139, 115, 85, 0.1);
    border: 1px solid rgba(139, 115, 85, 0.3);
    border-radius: 4px;
    font-size: 0.95em;
    color: #c9a961;
    transition: all 0.2s ease;
    font-family: inherit;
}

.auth-form-group input::placeholder {
    color: rgba(139, 115, 85, 0.5);
}

.auth-form-group input:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(139, 115, 85, 0.15);
}

.auth-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-wrapper input {
    padding-right: 45px;
}

.auth-password-toggle {
    position: absolute;
    right: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: #8b7355;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.auth-password-toggle svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.auth-password-toggle:hover {
    color: #d4af37;
}

.auth-password-toggle:focus {
    outline: none;
}

.auth-password-toggle .eye-hidden {
    display: none;
}

.auth-password-toggle.showing .eye-visible {
    display: none;
}

.auth-password-toggle.showing .eye-hidden {
    display: block;
}

.auth-submit-btn {
    width: 100%;
    padding: 14px 24px;
    border: 1px solid rgba(139, 115, 85, 0.3);
    border-radius: 4px;
    font-size: 0.95em;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #c9a961;
    background: transparent;
    margin-top: 8px;
}

.auth-submit-btn:hover {
    border-color: rgba(212, 175, 55, 0.5);
    color: #d4af37;
}

