body
{
    background-image: url(../../images/hourglass.jpg);
    background-size: 100vw 100vh;
    background-repeat: no-repeat;
    background-color: #3c3c3c;
    font-family: 'iranSans';
}
a {
    text-decoration: none !important;
}
/***/
/*{*/
/*    -webkit-user-select: none;  !* Chrome all / Safari all *!*/
/*    -moz-user-select: none;     !* Firefox all *!*/
/*    -ms-user-select: none;      !* IE 10+ *!*/
/*    user-select: none;          !* Likely future *!*/
/*}*/

.logo-box {
    text-align: center;
    margin-top: 40px;
}
.logo-box img {
    width: 90px;
}
.main-title {
    color: white;
    font-size: 3.4rem;
    font-weight: bold;
    font-family: 'Yekan';
}
.main-message {
    color: white;
    font-size: 1.3rem;
    line-height: 30px;
    padding: 3rem;
    background-color: #263238ab;
}
.login-box-user {
    display: flex;
    flex-direction: column;
    padding: 20px;
    position: absolute;
    width: 100%;
    left: 0;
    top: calc(100vh - 30rem);
}

.login-box-legal {
    display: none;
    flex-direction: column;
    padding: 20px;
    position: absolute;
    width: 100%;
    left: 0;
    top: calc(100vh - 33rem);
}
.verify-box
{
    display: flex;
    flex-direction: column;
    padding: 20px;
    position: absolute;
    width: 100%;
    left: 0;
    top: calc(100vh - 27rem);
}
.input-icon.right {
    right: auto;
    left: 0;
}
.input-icon {
    position: relative;
    right: 0;
}
.input-icon > i {
    display: block;
    position: absolute;
    margin: 1.2rem 10px 4px 2px;
    z-index: 3;
    width: 16px;
    text-align: center;
    right: 0;
    font-size: 2.5rem;
}
.input-icon input {
    padding-right: 30px;
    text-align: center;
    width: 100%;
    padding: 1rem;
    border: 1px solid #848484;
    margin-bottom: 10px;
}
.form-control
{
    height: 5rem!important;
}
.btn {
    border-radius: 30px;
    background-color: #263238;
    border: none;
    line-height: 3.5rem;

}
#legal_user {
    text-align: center;
    color: white;
    margin-top: 10px;
    width: 100%;
    display: block;
}

#regular_user {
    text-align: center;
    color: white;
    margin-top: 10px;
    width: 100%;
    display: block;
}
.login-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-top: 1px solid #7d7d7d;
    margin-top: 10px;
    padding-top: 10px;
}
.checkbox-box a {
    color: #f4511e;
}
.checkbox-box {
    padding-right: 10px;
    padding-top: 10px;
}
.checkbox-box span {
    color: white;
}
.resend_code {
    display: block;
    text-align: center;
    width: 100%;
    color: white;
}
input#verify_code {
    text-align: center;
}
.dashboard-box {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    position: absolute;
    width: 100%;
    left: 0;
    top: calc(100vh - 30rem);
}
.dashboard-btn {
    background-color: #ffffffc9;
    width: calc(100% - 1.3rem);
    display: block;
    margin-right: 0.5rem;
    margin-bottom: 9px;
    text-align: center;
    padding: 1.1rem;
    color: #2f2f2f;
    border-radius: 3px;
    border: 2px solid white;
}
/**************************************************************/
/**************************************************************/
/**************************************************************/
.checkbox-container {
    position: relative;
    padding-left: 10px;
    margin-bottom: 12px;
    margin-left: 5px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
    background-color: #f4511e;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
