/* 로그인 페이지 스타일 */

/* 로딩 스피너 스타일 */
.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 폼 스타일 개선 */
#loginForm {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-cont input[type="email"],
.login-cont input[type="password"] {
    width: 400px;
    max-width: 100%;
}

.login-btn {
    width: 400px;
    max-width: 100%;
}

/* 이메일 인증 완료 페이지 애니메이션 */
@keyframes dots {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* 미완료 페이지 스타일 */
.uncompleted-container {
    max-width: 600px;
    margin: 100px auto;
    padding: 40px;
    text-align: center;
}

.uncompleted-title {
    font-size: 30px;
    margin-bottom: 30px;
    color: #333;
}

.uncompleted-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.5;
}

.btn-main {
    background-color: #2c5282;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-main:hover {
    background-color: #2a4a7c;
    text-decoration: none;
    color: white;
}

/* 로그인 팝업 스타일 */
.popup {
    position: fixed !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 30px;
    z-index: 1000;
}

.popup .pop-body {
    padding: 20px 0;
}

.popup .btn-wrap {
    margin-top: 20px;
}

.popup .btn-base {
    min-width: 120px;
    padding: 10px 30px;
}

.popup .pop-close {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}

.dimmed {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.dimmed.on {
    display: block;
}