﻿


.check_login h2{
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px; 
}
.check_login>p{
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.ch_lg{
    margin-top: 50px;
    width: 100%;
    height: 350px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
}
.ch_lg>img{
    margin-top: 122px;
}
.ch_lg>p{
    font-weight: 500;
    font-size: 16px;
    margin-top: 20px;
    color: var(--normal-red);
}

.non_member{
    width: 100%;
    padding: 0.5%;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    height: 114px;
}
.non_member>div{
    margin-top: 26px;
}
.non_member p{
    font-size: 16px;
    font-weight: 600;
    color: #505050;
    
}
.non_member>button{
    font-size: 18px;
    font-weight: 700;
    color: #444;
    background: #f5f5f5;
    border-radius: 20px;
    width: 48%;
}
.non_member>button:hover{
        box-shadow: 0px 0px 2px rgba(125, 125, 125, 0.55);
}

.req_open{
    width: 100%;
    padding: 0.5%;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    height: 114px;
}
.req_open>div{
    margin-top: 19px;
}
.req_open p{
    font-size: 16px;
    font-weight: 600;
    color: #505050;
    
}
.req_open>button{
    font-size: 18px;
    font-weight: 700;
    color: #444;
    background: #f5f5f5;
    border-radius: 20px;
    width: 48%;
}
.req_open>button:hover{
    box-shadow: 2px 4px 10px rgba(125,125,125,0.55);
    background: #FF8F8F;
}



@media (max-width:580px) {

    .wrap {
        margin-top: 85px;
    }

    .check_login h2 {
        font-size: 22px;
        margin-bottom: 5px;
    }
    .check_login>p {
        font-size: 14px;
    }
    .ch_lg {
        margin-top: 30px;
    }
    .non_member{
        height: auto;
        padding: 2% 1%;
    }
    .non_member > p {
        font-size: 14px;
    }
    .non_member > button {
        font-size: 15px;
    }
    .non_member>p {
    margin-top: 5px;
    }
    
    .req_open{
        height: auto;
        padding: 2% 1%;
    }
    .req_open > p {
        font-size: 14px;
    }
    .req_open > button {
        font-size: 15px;
    }
    .req_open>p {
    margin-top: 5px;
    }
}


@media (max-width:480px) {

    .non_member{
        display: block;
        text-align: center;
        border-bottom: none;
    }
    .non_member>p{
        margin-bottom: 20px;
    }
    .non_member button{
        width: 100%;
        height: 60px;
    }

    .req_open{
        display: block;
        text-align: center;
        border-bottom: none;
    }
    .req_open>p{
        margin-bottom: 20px;
    }
    .req_open button{
        width: 100%;
        height: 60px;
    }
    footer {
        margin-top: 35px;
    }
    .ch_lg>img {
    width: 45px;
}

}