* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Pretendard Variable",-apple-system,BlinkMacSystemFont,system-ui,sans-serif;
}

/* PAGE */
.login-page {
    position: relative;
    min-height: 100vh;
    background: url("/static/style/3/login.png")center / cover no-repeat;
}

/* TOP LOGO */
.top-logo {
    position: absolute;
    top: 32px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.top-logo img {
    width: 18px;
    height: 18px;
}

.top-logo span {
    font-size: 14px;
    font-weight: 600;
}

/* WELCOME */
.welcome {
    position: absolute;
    bottom: 56px;
    left: 40px;
    color: #fff;
}

.welcome h1 {
    font-size: 32px;
    font-weight: 700;
}

/* LOGIN WRAP (반응형 핵심) */
.login-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 6vw;
}

/* LOGIN CARD */
.login-card {
    width: min(560px, 90vw);
    padding: clamp(40px, 5vw, 64px);
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

/* TEXT */
.login-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
    text-align: center;
}

.login-desc {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 40px;
    text-align: center;
}

/* FORM */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.field label {
    font-size: 13px;
    color: #374151;
    margin-bottom: 6px;
    display: block;
}

/* INPUT */
.field input {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    outline: none;
}

.field input:focus {
    border-color: #6c4bf4;
    box-shadow: 0 0 0 2px rgba(108,75,244,.25);
}

/* PASSWORD */
.password-wrap {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
}

/* BUTTON */
.login-btn {
    margin-top: 8px;
    height: 48px;
    border-radius: 5px;
    border: none;
    background: #6c4bf4;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
    .login-wrap {
        justify-content: center;
        padding-left: 0;
    }

    .welcome,
    .top-logo {
        display: none;
    }
}
