/* ========================================
   Login Page Styles
   ======================================== */

.login-page-section {
    min-height: 100vh;
    padding: 10rem 0 4rem;
    display: flex;
    align-items: center;
}

.login-page-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.login-page-card {
    padding: 3rem;
}

.login-page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.login-page-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.login-page-form {
    max-width: 450px;
    margin: 0 auto;
}

.password-input-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

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

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
}

.forgot-password {
    color: var(--primary-color);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.forgot-password:hover {
    opacity: 0.8;
}

.login-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.login-divider::before,
.login-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.login-divider::before {
    left: 0;
}

.login-divider::after {
    right: 0;
}

.login-divider span {
    color: var(--text-secondary);
    font-size: 0.875rem;
    background: transparent;
    padding: 0 1rem;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.social-btn.google {
    background: #fff;
    color: #333;
    border: 2px solid #ddd;
}

.social-btn.google:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-btn.kakao {
    background: #FEE500;
    color: #000;
}

.social-btn.kakao:hover {
    background: #FDD835;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 229, 0, 0.4);
}

.social-btn.naver {
    background: #03C75A;
    color: white;
}

.social-btn.naver:hover {
    background: #02B350;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 199, 90, 0.4);
}

.signup-link {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signup-link p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.signup-link a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

.login-benefits {
    padding: 2.5rem;
}

.login-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.login-benefits h3 i {
    color: var(--primary-color);
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-list li {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(196, 86, 61, 0.05);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    background: rgba(196, 86, 61, 0.1);
    transform: translateX(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    font-size: 1.5rem;
    color: white;
}

.benefit-text h4 {
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
}

.benefit-text p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .login-page-section {
        padding: 8rem 0 2rem;
    }
    
    .login-page-container {
        grid-template-columns: 1fr;
    }
    
    .login-page-card {
        padding: 2rem;
    }
    
    .login-benefits {
        display: none;
    }
}
