/*************************
SignIn, Registration and Import sections right side bar styles

*************************/

.signin-registration-container,
.import-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
}

.r-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    gap: 3rem;
}

.r-container .content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.r-container form {
    width: 38rem;
}

.r-container .user-details .input-box input {
    width: 100%;
    height: 6rem;
    background: #f2f2f2 0% 0% no-repeat padding-box;
    padding-left: 1.5rem;
    border: none;
}

.r-container .user-details .input-box input:focus,
.user-details .input-box input:valid {
    border-color: #729cff;
}

.r-container .accept {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 1.5rem;
    height: 6rem;
}

.r-container form .user-details .input-box {
    margin-bottom: 2rem;
    width: 100%;
}

.r-container form .button {
    display: flex;
    height: 4.8rem;
    margin-top: 6rem;
    background: #729cff 0% 0% no-repeat padding-box;
}

.r-container form .button input {
    width: 100%;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    background: #729cff 0% 0% no-repeat padding-box;
}

.r-container .don\'t\/already-have-an-account {
    text-align: center;
    font: normal normal normal 1.4rem/1.8rem Roboto;
}

.r-container .don\'t\/already-have-an-account a {
    margin-left: 2rem;
    color: #333;
    text-decoration: none;
}

.r-container .switch-box {
    padding-left: 1.5rem;
    display: flex;
    justify-content: space-between;
}

.r-container .btn-switch {
    font-size: 0.8rem;
    position: relative;
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.r-container .btn-switch__radio {
    display: none;
}

.r-container .btn-switch__label {
    display: inline-block;
    padding: 0.5rem;
    vertical-align: top;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    color: #666;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.r-container .btn-switch__label + .btn-switch__label {
    padding-right: 0.5rem;
    padding-left: 0;
}

.r-container .btn-switch__txt {
    position: relative;
    z-index: 2;
    display: inline-block;
    min-width: 1.5rem;
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
}

.r-container
    .btn-switch__radio_no:checked
    ~ .btn-switch__label_yes
    .btn-switch__txt,
.btn-switch__radio_yes:checked ~ .btn-switch__label_no .btn-switch__txt {
    opacity: 0;
}

.r-container .btn-switch__label:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #f0f0f0;
    border-radius: 1.5rem;
    box-shadow: inset 0 0.0715rem 0.3572rem rgba(43, 43, 43, 0.05);
    transition: background 0.2s ease-in-out;
}

.r-container .btn-switch__radio_yes:checked ~ .btn-switch__label:before {
    background: #729cff;
}

.r-container .btn-switch__label_no:after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0.5rem;
    bottom: 0.5rem;
    left: 0.5rem;
    width: 2rem;
    background: #fff;
    border-radius: 1rem;
    pointer-events: none;
    box-shadow: 0 0.1429em 0.2143em rgba(43, 43, 43, 0.2),
        0 0.3572em 0.3572em rgba(43, 43, 43, 0.1);
    transition: left 0.2s ease-in-out, background 0.2s ease-in-out;
}

.r-container .btn-switch__radio_yes:checked ~ .btn-switch__label_no:after {
    left: calc(100% - 2.5em);
    background: #fff;
}

.r-container .btn-switch__radio_no:checked ~ .btn-switch__label_yes:before,
.btn-switch__radio_yes:checked ~ .btn-switch__label_no:before {
    z-index: 1;
}

.r-container .btn-switch__radio_yes:checked ~ .btn-switch__label_yes {
    color: #fff;
}
