/* Checkbox styles */
.main {
    display: block;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    color: #434343;
    font-weight: 400;
    margin: 0 !important;
}

/* Hide the default checkbox */
input[type=checkbox] {
    visibility: hidden;
    margin-top: 0 !important;
}

/* Creating a custom checkbox based on demand */
.geekmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 16px;
    width: 16px;
    border-radius: 2px;
    border: 1px solid #D9D9D9;
    background-color: #FFFFFF;
}

/* Specify the background color to be
shown when hovering over checkbox */
/*.main:hover input ~ .geekmark {*/
/*    background-color: yellow;*/
/*}*/

/* Specify the background color to be
shown when checkbox is active */
/*.main input:active ~ .geekmark {*/
/*    background-color: #292922;*/
/*    border: 1px solid #292922;*/
/*}*/

/* Specify the background color to be
shown when checkbox is checked */
.main input:checked ~ .geekmark {
    background-color: #292922;
    border: 1px solid #292922;
}

/* Checkmark to be shown in checkbox */
/* It is not be shown when not checked */
.geekmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Display checkmark when checked */
.main input:checked ~ .geekmark:after {
    display: block;
}

/* Styling the checkmark using webkit */
/* Rotated the rectangle by 45 degree and
showing only two border to make it look
like a tickmark */
.main .geekmark:after {
    left: 5px;
    bottom: 3.5px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.remember-me-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 8px;
}

@media only screen and (max-height: 626px) {
    .content {
        height: min-content;
        min-height: min-content;
        padding: 24px 70px;
    }
}