body{
    background-image: url(../img/Background.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-color: var(--sub_color_lightgray);
}


.login_wrapper{
    width: 476px; height: 572px;
    background-color: var(--container_color);
    border-radius: 40px;
    position: absolute;
    top: 47%; left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: var(--shadow_1);
    padding: 70px 50px;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
}

/* logo */
.logo{
    width: 200px; height: 85px;
}


/* form */
#login_form{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
}

#login_form>input{
    width: 100%; height: auto;
    display: flex;
    padding: 15px 25px;
    border-radius: 50px;
    background: #f7f7f7;
    border: none;
    box-shadow: var(--inner_shadow);
}

#login_form>input:last-of-type{
    width: 150px; height: auto;
    background: var(--sub_color_lightskyblue);
    font-size: var(--font_sub_title_2);
    font-weight: 500;
    cursor: pointer;
}
#login_form>.box{
    display: flex;
    align-items: center;
    gap: 10px;
}