/* 전체 배경 */
.login-wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("/static/style/4/login.jpg")center / cover no-repeat;
}

/* 카드 */
.login-card {
    width: 420px;
    padding: 50px 40px;
    border-radius: 20px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    text-align: center;
}

/* 제목 */
.login-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* 설명 */
.login-desc {
    font-size: 13px;
    color: #888;
    margin-bottom: 30px;
}

/* 폼 */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 입력 */
.input-group {
    text-align: left;
}

.input-group label {
    font-size: 12px;
    margin-bottom: 6px;
    display: block;
    color: #666;
}

.input-group input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #eee;
    padding: 10px 0;
    font-size: 14px;
    background: transparent;
    outline: none;
}

.input-group input:focus {
    border-color: #e57373;
}

/* 비밀번호 */
.password-wrap {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 0;
    top: 8px;
    border: none;
    background: none;
    cursor: pointer;
}

/* 버튼 */
.login-btn {
    margin-top: 20px;
    height: 45px;
    border-radius: 25px;
    border: none;
    background: linear-gradient(90deg, #e57373, #d81b60);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.login-btn:hover {
    opacity: 0.9;
}

/* 로고 */
.logo-area {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.logo-area img {
    width: 20px;
}