body {
    font-family: "Roboto", sans-serif;
    height: 100%;
}

.split-container {
    display: flex;
    height: 100vh;
}

.left {
    flex: 4;
    background-color: #fff8f1;
    padding: 20px;
}

.right {
    flex: 6;

    padding: 20px;
}

.body_spinner {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
}

.head_design_spinner {
    text-align: center;
    color: #ff6700;
}

.center_spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.div_signup {
    margin-top: 14px;
    text-align: center;
    text-decoration: none;
    color: #ff6700;
    cursor: pointer;
}

.div_reset_password {
    text-align: center;
    cursor: pointer;
    color: rgb(72, 70, 70);
    margin-top: 14px;
}

.div_reset_password:hover {
    color: black;
}

.edittext {
    font-size: 16px;
    padding: 14px 16px;
}

.centerall {
    display: flex;
    justify-content: center;
}

.small_screen_size {
    display: none;
}

.large_screen_size {
    display: block;
}

.btn-primary {
    background-color: #ff6700 !important;
    border-color: #ff6700 !important;
}

.btn-primary:hover {
    background-color: #ff6700 !important;
    border-color: #ff6700 !important;
}

@media only screen and (max-width: 491px) {
    .small_screen_size {
        display: block;
    }

    .large_screen_size {
        display: none;
    }
}

@media only screen and (min-width: 490px) and (max-width: 991px) {
    .small_screen_size {
        display: block;
    }

    .large_screen_size {
        display: none;
    }

    .signin_design {
        display: flex;
        flex-direction: column;
        justify-items: center;
        align-items: center;
        margin-top: 40px;
    }

    .signin_width {
        width: 400px;
    }
}

@media only screen and (min-width: 992px) {
    .signin_design {
        display: flex;
        flex-direction: column;
        justify-items: center;
        align-items: center;
        margin-top: 40px;
    }

    .signin_width {
        width: 400px;
    }
}

