/* static/laundry_manager/login-style.css */

body.login-body {
    padding: 0;
    align-items: stretch;
    background-color: #f0f2f5;
    min-height: 100vh;
}

.login-container {
    width: 100%;
    max-width: none;
    min-height:100vh;
    margin: 0;
    background-color: var(--color-container);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* --- 상단 로고 및 비회원 영역 --- */
.welcome-section {
    padding: 40px 30px 30px;
    text-align: center;
    flex-shrink: 0;
    opacity: 0; 
    transform: translateY(-40px);
    margin-top: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.logo-area { 
    width: 150px;   /* 원하는 크기 */
    height: auto;   /* 비율 유지 */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px; 

}
.logo-subtitle { font-size: 14px; color: var(--color-text-secondary); }
.logo-title { font-size: 28px; font-weight: 900; color: var(--color-primary); margin: 4px 0 30px; }
.guest-link { 
    margin-top: 25%;
    font-size: 15px; font-weight: 500; color: var(--color-text-secondary); text-decoration: underline; cursor: pointer; }


/* --- 하단 로그인 패널 (스타일 수정) --- */
.login-panel {
    background-color: var(--color-primary);
    flex: 0 0 auto;
    margin-top: auto;  
    border-radius: 50px 50px 0 0;
    padding: 30px 30px 40px; /* 패딩 조정 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; /* 내부 요소 가운데 정렬 */
    opacity: 0;
    transform: translateY(40px);
    margin-left: 20px;
    margin-right: 20px;
}

/* .login-box 스타일은 제거 */

/* 로그인 패널 내부 텍스트 스타일 변경 */
.login-panel h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-container); /* 흰색 */
}
.login-panel .description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8); /* 밝은 회색 (반투명 흰색) */
    margin-bottom: 24px;
}
.social-divider {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9); /* 더 연한 회색 */
    margin-bottom: 20px;
    font-weight: 600;
}
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;

}
.social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    background-color: var(--color-container); /* 흰색 배경 유지 */
    border: 1px solid var(--color-border);
    padding: 14px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    color: var(--color-text-primary);
    transition: background-color 0.2s;
}
.social-btn:hover { background-color: #f9fafb; }
.social-btn img { height: 22px; }
.signup-prompt {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}
.signup-prompt a {
    color: var(--color-container); /* 흰색 */
    font-weight: 700;
    text-decoration: none;
}