body {
    margin: 0;
}

.container {
    width: 100%;
    max-width: 402px;
    min-height: 100vh;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
}

header {
    width: 100%;
    margin:50px 0 40px 0;
}

.headerBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #D5D6D7;
}

.backIcon img {
    display: block;
}

.headerTitle {
    font-size: 16px;
    font-weight: bold;
}

.emptyBox {
    width: 24px;
    height: 24px;
}

.loginContainer {
    display: flex;
    flex-direction: column;
    gap: 30px;

    flex: 1;
}

.loginTitle{
    font-weight:700;
    font-size:32px;
    padding:10px 0;
}
.notice {
    display: flex;
    align-items: center;
    border-radius: 5px;
    font-weight: 500;
}

.loginForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inputBox {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.inputBox label {
    font-size: 13px;
    font-weight: 500;
}

.inputBox input {
    border: 1px solid #D5D6D7;
    border-radius: 5px;
    padding: 13px 12px;
    font-size: 12px;
    outline: none;
    box-sizing: border-box;
}

.inputBox input:focus {
    border-color: #FE332E;
}

.loginBtn {
    margin-top: 8px;
    border: none;
    border-radius: 5px;
    color: white;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}
.loginBtn:disabled {
    background-color:#FDCED0;
}
.loginBtn:not(:disabled) {
    background-color:#FE332E;
}

.errorMessage {
    padding: 12px;
    background: #FDF3F4;
    color: #FE332E;
    border-radius: 5px;
    font-size: 12px;
}

/* 로그인 상태 유지 */
.loginCheck{
    display: flex;
    align-items: center;
    gap:10px;
    margin-bottom: 30px;
}
.loginCheck span{
    color:#686866;
    font-size:14px;
}
.loginCheckImg{
    cursor: pointer;
    width:25px;
    height:25px;
}
/* 폼 밑에 */
.divider{
    display: flex;
    align-items: center;
    gap:20px;
}


.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
}

/* 소셜 로그인 버튼 */
.socialLogin{
    display: flex;
    flex-direction: column;
    gap:10px;
}
.socialBtn{
    background-color: white;
    display: flex;
    border-radius: 10px;
    border:2px solid #D5D6D7;
    align-items: center;
    width: 100%;
    height: 59px;
    font-size:20px;
    padding:16px 25px;
    gap:40px;
    cursor: pointer;
}
.socialBtn img{
    width: 27px;
    height: 27px;
    padding:16px 8px;
}
.googleBtn{
}

.appleBtn{
    gap:55px;
}


/* 회원가입 */
.signupBox{
    display: flex;
    align-items: center;
    gap:30px;
    justify-content: center;
    font-size:15px;

    margin-top: auto;
    padding-bottom: 20px;
}
.signupLink{
    text-decoration: none;
    cursor:pointer;
    color:#FE332E;
    font-weight: 600;
}