@charset "utf-8";

section {
    min-height: 800px;
}

.wrap {
    text-align: center;
    position: absolute;
    width: 350px;
    top: 50%;
    left: 50%;
    padding: 20px;
    transform: translate(-50%, -50%);
    min-height: 0 !important;
}

/* .logo img{
    width: 160px;
} */

.wrap form {
    margin: 20px 0;
}

.wrap form .id_pw input {
    border: 0;
    border-bottom: 1px solid #bebebe;
    width: 300px;
    padding: 15px 5px 10px;
    margin: 20px 0;
    height: 48px;
}

.wrap form .id_pw input::placeholder {
    font-family: 'Pretendard';
    font-weight: 300;
    font-size: 1.4rem;
    color: #999;
}

.wrap form .id_pw input[type="text"] {
    font-family: 'Pretendard';
    font-weight: 300;
    font-size: 1.6rem;
    color: #333;
    border-bottom: 1px solid #bebebe;
}

.wrap form .id_pw input:focus {
    outline: 0;
    border-bottom: 1px solid #da4747;
    /* background: var(--a-bg); */
}

.wrap form .id_pw input:focus::placeholder {
    color: transparent;
}


form .id_pw_sh {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #999;
    margin-bottom: 30px;
}

form .id_pw_sh a {
    color: #666;
    font-weight: 300;
    font-size: 1.4rem;
    padding: 0 10px;
}

form .buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form .buttons .btn {
    padding: 15px 0;
    background: #da4747;
    color: #fff;
    border: 0;
    border-radius: 5px !important;
    font-family: 'Pretendard';
    font-size: 1.6rem;
    cursor: pointer;
}

form .buttons .signup_btn {
    background: #fff;
    border: 1px solid #da4747;
    color: #da4747;
}

@media screen and (max-width:700px) {
    .wrap form .id_pw input {
        border-radius: 0;
    }
}