.login-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 32px;
    background: #fff;
}

.login-logo {
    margin-bottom: 20px;
}

.login-logo img {
    width: 160px;
    height: 160px;
    border-radius: 32px;
}

.login-title {
    font-size: 54px;
    font-weight: 800;
    color: #840420;
    margin-bottom: 10px;
}

.login-subtitle {
    font-size: 20px;
    color: #888;
    margin-bottom: 48px;
    text-align: center;
    line-height: 1.6;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    margin-bottom: 12px;
    text-decoration: none;
}

.btn-kakao {
    background: #FEE500;
    color: #3C1E1E;
}

.btn-google {
    background: #fff;
    color: #444;
    border: 1px solid #ddd;
}

.btn-apple {
    background: #000;
    color: #fff;
}

.btn-zalo {
    background: #0068FF;
    color: #fff;
}

.social-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.login-footer {
    margin-top: 32px;
    font-size: 14px;
    color: #bbb;
    text-align: center;
    line-height: 1.8;
}

/* 구분선 */
.login-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin: 8px 0 16px;
    color: #ccc;
    font-size: 15px;
}
.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eee;
}

/* 로그인 폼 */
.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.login-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #eee;
    border-radius: 12px;
    font-size: 17px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.login-input:focus {
    border-color: #840420;
}
.login-btn {
    width: 100%;
    padding: 14px;
    background: #840420;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 4px;
}

/* 에러 메시지 */
.login-error {
    width: 100%;
    padding: 12px 16px;
    background: #fff3f3;
    border-radius: 10px;
    font-size: 16px;
    color: #e55;
    margin-bottom: 4px;
}

/* 회원가입 링크 */
.login-signup {
    margin-top: 20px;
    font-size: 16px;
    color: #888;
}
.login-signup a {
    color: #840420;
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
}
