/* Additional Auth Modal Form Styles */
.auth-modal-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
    margin: 20px 24px 0;
}

.auth-modal-content .auth-tabs {
    margin: 20px 24px;
    padding: 0;
}

.auth-form {
    padding: 0 24px 24px;
}

.auth-submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.close-auth-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    font-size: 28px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-auth-modal:hover {
    color: #667eea;
    transform: rotate(90deg);
}

.auth-modal .auth-divider {
    padding: 0 24px;
}

.auth-modal .kakao-login-btn {
    margin: 0 24px 24px;
}