:root {
    --dark: #131313;
    --dark-grey: #323232;
    --light: #bab9b9;
    --green: #00B591;
    --black: #000000;
    --white: #ffffff;
}

.sec--main{
    min-height: unset;
    height: 100vh;
}

.reg-form, .reg-image{
    width: 50%;
    height: 100%;
}

.reg-image{
    background-image: url('../images/timeapp-registration-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.reg-form{
    display: flex;
    justify-content: center;
    overflow-y: auto;
}

.reg-form form{
    width: 50%;
    max-width: 500px;
    padding-top: 100px;
}

.reg-form form button{
    width: 100%;
    margin-bottom: 80px;
}

label{
    opacity: 0.5;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
    display: block;
    padding-bottom: 5px;
    font-weight: bold;
}

input:not([type="checkbox"], [type="radio"]),
select,
textarea{
    width: 100%;
    background-color: #FAFAFA;
    border: 1px solid #D8D8D8;
    border-radius: 8px;
    font-weight: bold;
    padding: 7px 30px;
}

select{
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('../images/caret-down-solid.svg') no-repeat calc(100% - 20px) 50%, #FAFAFA;
    background-size: 15px 15px;
    padding: 7px 30px;
}

input[type="checkbox"],
input[type="radio"]{
    min-width: 20px;
    height: 20px;
    border-radius: 8px;
    border: 1px solid var(--dark);
    margin-right: 15px;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked{
    background-color: var(--dark);
}

.pj-btn{
    border: unset;
    width: 190px;
    height: 50px;
    border-radius: 25px;
    text-align: center;
    color: var(--white);
    background-color: var(--dark-grey);
    line-height: 40px;
    border: 1px solid var(--dark-grey);
}

.pj-btn:hover{
    background-color: #D8D8D8;
    color: var(--dark);
}

@media screen and (max-width: 1500px){
    .reg-form form{
        width: 60%;
    }
}

@media screen and (max-width: 1300px){
    .reg-form form{
        width: 70%;
    }

    .reg-form{
        width: 55%;
    }

    .reg-image{
        width: 45%;
    }
}

@media screen and (max-width: 900px){
    .reg-form{
        width: 100%;
    }

    .reg-image{
        display: none;
    }
}

@media screen and (max-width: 600px){
    .reg-form form{
        width: 80%;
    }
}

@media screen and (max-height: 560px){
    .reg-form form{
        padding-top: 60px;
    }

    .reg-form form button{
        margin-bottom: 40px;
    }
}
