body {
    margin: 0;
    font-family: 'Noto Sans KR', sans-serif;
    background: url('/images/login/login.png') no-repeat center center fixed;
    background-size: cover;
}

/* 로고 박스 */
.logo-wrap {
    text-align: center;
    margin-top: 50px;
}

.logo {
    height: 60px;
    margin-bottom: 10px;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: start;
    margin-top: 20px;
}

.login-box {
    background-color: rgba(167, 143, 155, 0.6);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: white;
    width: 400px;
}

h1 {
    color: #3C2E3A;
    font-weight: bold;
    text-shadow: #3C2E3A 1px 1px 1px;

}

.login-text {
    margin-bottom: 30px;
    font-size: 18px;
    color: #d4b2cc;
    letter-spacing: 2px;
}
.label-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 5px;
    color: #3C2E3A;
    font-weight: bold;
}

.label-icon {
    width: 20px;
    height: 20px;
}

/* 아이콘 + 인풋 라인 */
.input-wrap {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 0 15px;
    margin-bottom: 10px;
}

.input-wrap i {
    color: #A78F9B;
    font-size: 16px;
}

.input-wrap input {
    border: none;
    outline: none;
    flex: 1;
    padding: 12px;
    border-radius: 25px;
    font-size: 14px;
    background: transparent;
}
button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 999px; /* pill 모양 */
    background: linear-gradient(90deg, #4B2340, #6B375F); /* 어두운 와인 계열 그라디언트 */
    color: white;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 30px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4); /* 강한 그림자 */
    transition: transform 0.2s ease;
}

button:hover {
    transform: translateY(-2px);
}

footer {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    text-align: right;
    color: #3C2E3A;
    font-size: 14px;
    background-color: #A78F9B;
    padding: 5px 20px;
    font-weight: bold;
}
