
.Main {
    height: 100svh;
    font-weight: var(--font-weight-w6); 
    padding-top: 70px;
}

/* @media (min-width: 640px) {
    .Main {
        display: grid;
    }
} */

.Contents_Inner {
    padding-top: 20px;
    padding-bottom: 63px;
}

@media (min-width: 640px) {
    .Contents_Inner {
        padding-top: 76px;
	background:#fff;
    }
}

.Members_Link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-red);
    margin-bottom: 20px;
}

.Members_Link::after {
    display: block;
    content: "";
    width: 24px;
    height: 24px;
    background-image: url(../images/arrow_right_red.svg);
    background-position: center center;
    background-repeat: no-repeat;
}

.Forgot_Password {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: calc(20px - 8px);
}

.Forgot_Password::after {
    display: block;
    content: "";
    width: 24px;
    height: 24px;
    background-image: url(../images/arrow_right_bk.svg);
    background-position: center center;
    background-repeat: no-repeat;
}

.Login_Form {
    width: 100%;
    margin-top: 8px;
}

.Form_Inner {
    display: grid;
    place-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

@media (min-width: 640px) {
    .Form_Inner {
        margin-bottom: 120px;
    }
}

.Label {
    max-width: 300px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

input {
    background-color: var(--base-color);
    border: 1px solid var(--border);
    filter: var(--drop-shadow-form);
    font-weight: var(--font-weight-w4);
    padding: 14px 20px;
}

.Fa {
    position: absolute;
    top: 43px;
    right: 20px;
    width: 22px;
    height: 17px;
    background-image: url(../images/password_lock.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.Login_Btn {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: var(--main-color);
    color: var(--base-color);
    font-size: calc(24 * var(--rem-ratio));
    line-height: 1.5;
    filter: var(--drop-shadow-form);
    margin-inline: auto;
}

.Login_Btn::before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../images/login.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 90px 90px;
}

.Img_Box {
    margin-top: 33px;
}
