/* ===============================
||  Start: General Settings
================================== */

:root {
    --main-color: #FF9800;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', Georgia, 'Times New Roman', Times, serif;
}

/* End: General Settings */

/* ===============================
||  Start: Media Queries
================================== */
.container{
    padding: 0px 15px;
    max-width: 600px;
    margin: auto;
}

@media (max-width: 767px){
    .container{
        max-width: 600px;
    }
    
}

@media (min-width: 768px){
    .container{
        max-width: 750px;
    }
    
}

@media (min-width: 992px){
    .container{
        max-width: 970px;
    }
}

@media (min-width: 1200px){
    .container{
        max-width: 1170px;
    }
}


/* End: Media Queries */

/* ===============================
||  Start: formDesign
================================== */
.form-control{
    height: 40px;
    padding: 5px 10px;
    text-align: left;
    border-radius: 5px;
    border: solid 1px #bbb;
    font-size: 0.8em;
    width: 100%;
    display: block;
}

form {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: 250px;
}

.text-danger{
    font-size: 0.7em;
    color: red;
    font-weight: 400;
}

.alert li{
    font-size: 0.7em;
    font-weight: 400;
    font-size: 0.7em;
    font-weight: 400;
    list-style: none;
    display: inline-block;
    margin-bottom: 10px;
}
.text-danger li{
    color: red;
}

.btn{
    padding: 5px 15px;
    line-height: 25px;
    text-align: center;
    font-size: .9em;
    border-radius: 20px;
    background-color: #03a9f3;
    border-color: #03a9f3;
    color: white;
    border: navajowhite;
}
.checkbox{
    width: 30px;
    height: 30px;
    border: solid 1p #bbb;
}
/* End: formDesign */ 

/* ===============================
||  Start: loginwrapper
================================== */
#loginwraber{
    background-image: url('https://marvel-inter.online/assets/dashboard/eliteadmin-theme/assets/images/background/login-register.jpg');
}
#loginwraber .container{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    background-image: url('https://marvel-inter.online/assets/dashboard/eliteadmin-theme/assets/images/background/login-register.jpg') ;
    background-size: cover;
    background-position: center;
    
}
#loginwraber .container #loginform h3{
    text-align: center;
    font-weight: 400;
    font-size: 1.3em;
}

#loginwraber .container #loginform .form-group .btn{
    width: 80%;
    margin: auto;
    display: block;
    opacity: .8;
    cursor: pointer;
    font-size: 1.2em;
    padding: 10px 20px;
}
#loginwraber .container #loginform .form-group .btn:hover,
#loginwraber .container #loginform .form-group .btn:focus{
    opacity: 1;
}

/* End: loginwrapper */ 