.register-section {
    width: 100%;
    min-height: 100vh;
    background-color: #223C4B;
    background-image: url(../images/login-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    margin-top: -84px;
    margin-top: -114px;
    margin-bottom: -61px;
}
.register-section .register-p-middle {
    width: 100%;
    margin-top: 170px;
    margin-bottom: 170px;
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
}
.login-logo {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
}
.register-form {
    padding: 0px 30px 0px 30px;
}
.register-form p {
    text-align: center;
    margin-bottom: 30px;
}
.cp-register-container {
    margin: 0;
    border-radius: 6px;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 3px 14px rgba(0, 0, 0, 0.14);
}
.cp-register-container .form-group input {
    height: 52px;
    padding: 14px 14px;
    border: 2px solid #fff;
    border-radius: 6px;
    background-clip: unset;
}
.cp-register-container .form-group input:focus {
    border: 2px solid #C0A982;
}
button.new-register-btn:hover {
    color: #FFFFFF;
    background-color: rgba(230, 205, 164, 1);
}
button.new-register-btn {
    margin-top: 16px;
    font-size: 18px;
    display: block;
    width: 100%;
    height: 52px;
    border-radius: 6px;
    text-align: center;
    background-color: #C0A982;
    color:#FFFFFF;
}
/* Custom Checkbox */

.register-form [type=radio] { 
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.register-form .form-check-inline {
    margin-right: 0;
    display: block;
    float: left;
    width: 50%;
    /* margin-top: 20px; */
    margin-bottom: 14px;
}
.register-form .form-check-inline:nth-of-type(1) {
    padding-right: 5px;
}
.register-form .form-check-inline:nth-of-type(2) {
    padding-left: 5px;
}
.register-form [type=radio] + label {
    width: 100%;
    /* width: 50%; */
    cursor: pointer;
    border: 2px solid #2d4553;
    border-radius: 6px;
    padding: 13px 4px;
    font-size: 14px;
    font-weight: 500;
    color: #2d4553;
    text-align: center;
}
.register-form [type=radio]:checked + label {
    /* outline: 2px solid #f00; */
    background-color: #2d4553;
    border: 2px solid #2d4553;
    border-radius: 6px;
    padding: 13px 4px;
    color: #FFFFFF;
}
.register-form [type=radio] + label i {
    padding-right: 10px;
    color: #2d4553;
    font-size: 12px;
    font-weight: 600;
}
.register-form [type=radio]:checked + label i {
    color: #FFFFFF;
    padding-right: 10px;
}

/* ============================== */
/*         Media Query          */
/* =========================== */

@media (max-width: 1199.98px) {
    .register-section {
        width: 100%;
        min-height: 100vh;
        background-color: #223C4B;
        background-image: url(../images/login-background.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        margin-top: -84px;
        margin-top: -114px;
        margin-bottom: -58px;
    }
}
@media (max-width: 575.98px) {
    .register-section .register-p-middle {
        margin-top: 170px;
        margin-bottom: 170px;
        width: 100%;
        position: static;
        top: 50%;
        left: 50%;
        transform: none;
    }
}