

main {
    background-image: url('../../images/common/login_page.webp');
    min-height: 100vh;
    padding-top: calc(var(--header-section-height) + 40px);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.login-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    width: 500px;
    height: 600px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(165, 167, 229, 0.5);
    padding: 0 50px;
    text-align: center;
}

.login-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.login-content {
    font-size: 15px;
    margin-bottom: 15px;
}

.login-description {
    display: block;
    font-size: 14px;
    margin-bottom: 30px;
    color: rgb(106, 107, 109);
}

.login-input {
    display: inline-block;
    width: 100%;
    aspect-ratio: 20 / 2.6;
    border-radius: 10px;
    outline: 1px solid #c5c5c5;
    border: none;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 10px;
}

.login-input::placeholder {
    color: #c5c5c5;
}

.login-btn {
    width: 100%;
    font-size: 18px;
    aspect-ratio: 20 / 3;
    color: white;
    background: #3d3bb2;
    border-radius: 8px;
    cursor: pointer;
}

.find-wrap {
    font-size: 14px;
    margin: 20px 0;
}

.find-wrap li {
    display: inline-block;
}

.find-wrap li + li {
    padding-left: 28px;
}

.find-wrap li + li:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 12px;
    width: 2px;
    height: 12px;
    border-radius: .5px;
    background-color: rgb(130, 130, 132);
}

.find-text {
    text-decoration: none;
    color: rgb(130, 130, 132);
}

.line-division {
    color: #c0c0c1;
    font-size: 14px;
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.line-division::before,
.line-division::after {
    content: "";
    flex-grow: 1;
    background: #c0c0c1;
    height: 1px;
    line-height: 0px;
    margin: 0px 16px;
}

.kakao-login-btn {
    width: 100%;
}

@media (max-width: 632px) {
    main {
        background-color: white;
        background-image: none;
    }

    .login-section {
        width: 100vw;
        height: auto;
        border-radius: 0;
        box-shadow: none;
        padding: 0 6%;
    }
}