/* '로그인' 제목 스타일 */
.login-text {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #394648;
    letter-spacing: -0.5px;
}

.main-content {
    padding: 40px 100px;
}

/* 입력 필드 (이메일, 비밀번호) */
.login-input {
    margin-bottom: 24px;
}

/* '이메일', '비밀번호' */
.login-input label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #5A6A6C;
    letter-spacing: -0.2px;
}

/* input 태그 */
.login-input input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #D4CDC6;
    border-radius: 8px;
    font-size: 16px;
    color: #394648;
    background-color: #FFFFFF;
    box-sizing: border-box;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-input input::placeholder {
    color: #C4C4C4;
    font-weight: 400;
}

/* input 태그에 포커스 되었을 때 */
.login-input input:focus {
    outline: none;
    border-color: #EDB6A3;
    background-color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(203, 172, 136, 0.25); 
    transform: translateY(-2px);
}

.helper-text {
    font-size: 13px;
    color: #E07A5F;
    font-weight: 500;
    margin-top: 6px;
    min-height: 18px;
    padding-left: 4px;
}

/* 버튼 공통 */
.buttons {
    margin-top: 40px;
}

/* 로그인 버튼 */
#login-button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #7AB06D 0%, #69995D 100%);
    color: white;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 12px rgba(105, 153, 93, 0.35);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 로그인 버튼에 마우스를 올렸을 때 */
#login-button:hover {
    filter: brightness(105%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(105, 153, 93, 0.4);
}

#login-button:active {
    transform: translateY(1px);
    box-shadow: 0 4px 6px rgba(105, 153, 93, 0.3);
    filter: brightness(95%);
}

/* 회원가입 버튼 */
.buttons a {
    display: block;
    margin-top: 24px;
    text-align: center;
    text-decoration: none;
    color: #9EA4A5;
    font-size: 14px;
    transition: all 0.2s;
}

/* 회원가입 버튼에 마우스를 올렸을 때 */
.buttons a:hover {
    color: #EDB6A3;
    text-decoration: none;
    font-weight: 600;
}