/* 로그인 페이지 전체 컨테이너 */
.login-container {
    font-family: "Noto Sans KR", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffffff; /* 배경색 추가 */
}

/* 로그인 박스 */
.login-box {
    width: 400px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(125, 90, 158, 0.5);
    text-align: center;
}

/* 제목 스타일 */
.login-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.login-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

/* 입력 필드 스타일 */
.login-form input {
    width: 100%;
    padding: 12px;
    margin: 5px 0;
    border: 1px solid #ccc;
    font-size: 14px;
    box-sizing: border-box;
}

/* 로그인 버튼 */
.login-button {
    width: 100%;
    background-color: #7D5A9E; /* 버튼 색 추가 */
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
}
.login-button:hover {
    background-color: #6A4B85;
}

/* 소셜 로그인 */
.social-login {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;

}

.social-login img {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.help-links a {
    padding: 12px;
    color: #7D5A9E; 
    text-decoration: none; /* 밑줄 제거 */
    font-size: 14px;
}

.help-links  {
    margin-top: 20px;
    color: #7D5A9E; 
    font-size: 14px;
}

.help-links a:hover {
    text-decoration: underline; 
}


.social_login_tit .tit {
    text-align: center;
    font-size: 15px;
    color: #5c667b;
    line-height: 24px;
    margin: 30px 0 20px 0;
}

.social_login_tit .tit::before, .social_login_tit .tit::after {
    margin-left: 8px;
    margin-right: 8px;
    width: 60px;
    height: 1px;
    background-color: #eaedf4;
    display: inline-block;
    vertical-align: super;
    content: '';
}

