@import url("./reset.css");
/* @import url("./header.css"); */

* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(247, 247, 247);
        /* margin-bottom: 100px; */
}

.login-container {
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    align-items: center;
    width: 30%;
    border: 1.5px solid rgb(192, 192, 192);
    height: 60%;
    background-color: white;
    border-radius: 10px;
    min-width: 300px;

    position: fixed;
    top: 190px;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.login-logo img {
    width: 25%;
    height: auto;
    min-width: 200px;
    min-height: auto;
}

.login-logo span {
    width: 25%;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    margin-top: 10px;
    white-space: nowrap;
}

.separator {
    height: 4px;
    background-color: rgb(221, 221, 221);
    width: 10%;
    margin: 10px;
}

.login-form {
    display: flex;
    flex-direction: column;
    width: 90%;
    height: fit-content;
}

.login-form > .form-control.email {
    display: flex;
    flex-direction: column;
    margin: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
}

.login-form > .form-control.password {
    display: flex;
    flex-direction: column;
    margin: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
}

.login-form label {
    margin-left: 2px;
}

.login-form input {
    height: 30px;
    font-family: Arial, Helvetica, sans-serif;
    text-indent: 5px;
    border-radius: 5px;
    border: 1px solid rgb(161, 161, 161);
}

.login-form > .form-control.email input:hover {
    box-shadow: 0 0 0 2px #ffae00;
    border: 1px solid white;
}

.login-form > .form-control.email input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #FFC516;
    border: 1px solid white;
}

.login-form > .form-control.password input:hover {
    box-shadow: 0 0 0 2px #ffae00;
    border: 1px solid white;
}

.login-form > .form-control.password input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #FFC516;
    border: 1px solid white;
}

.login-form > .form-control.forgotpassword {
    margin-top: -5px;
    margin-left: 13px;
    font-family: Arial, Helvetica, sans-serif;
    justify-content: left;
}

.login-form > .form-control.forgotpassword span {
    text-decoration: none;
    color: #ffae00;
}

.login-form > .form-control.forgotpassword span:hover {
    color: #FFC516;
    cursor: pointer;
}

.login-form > .form-control.rememberme {
    margin-top: 5px;
    display: flex;
    margin-left: 13px;
    align-items: center;
    margin-bottom: 10px;
}

.login-form > .form-control.rememberme label {
    margin-left: 7px;
    font-family: Arial, Helvetica, sans-serif;
}

.login-form > .form-control.rememberme input:checked {
    background-color: #FFC516;
}

.login-form > .form-control.submit {
    align-self: center;
    width: 90%;
    height: 35px;
}

.login-form > .form-control.submit button {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: none;
    background-color: #ffae00;
    cursor: pointer;
}

.login-form > .form-control.submit button:hover {
    background-color: #FFC516;
}

.other-options {
    margin-bottom: 10px;
    font-family: Arial, Helvetica, sans-serif;
}

.other-options a {
    text-decoration: none;
    color: #ffae00;
}

.other-options a:hover {
    color: #FFC516;
}