body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
    margin: 0;
}

.container {
    margin-left: 40px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 310px;
    margin: 0 auto;
    margin-top: 36px;
}

button.btn.btn-block {
    background-color: rgb(0 25 139);
    color: #ffffff;
    border-radius: 4px !important;
    padding: 5px !important;
    font-size: 17px !important;
    border: none !important;
    box-shadow: 3px 3px 7px -1px rgb(161 161 161 / 80%) !important;
    opacity: 1;
    cursor: pointer;
    margin-top: 16px;
}

button.btn.btn-block:hover {
    background: #00198B;
    opacity: 1;
}

#logo {
    color: rgb(50, 96, 230);
    font-weight: bold;
    text-align: center;
    margin: auto;
    display: block;
    font-size: 24px;
    padding: 0px;
}

.login-page {
    background-color: white;
}

#login-box {
    margin: 0 auto;
    width: 450px;
    margin-top: 5%;
}

.form-control {
    display: block;
    width: 100%;
    height: 36px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #202020;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
}

.btn.focus,
.btn:focus,
.btn:hover {
    color: #333;
    text-decoration: none;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;

}

.input-group input[type="text"],
.input-group .form-control {
    box-sizing: border-box;
    border: 1px solid lightgray;
    border-radius: 4px !important;
    padding: 0px 2px 0px 5px;
}

.input-group {
    display: inline-block;
    width: 300px;
    border-bottom: none;
    position: relative;
}

.input-group {
    width: 100%;
    margin-bottom: 20px;
}



button.btn.btn-block:disabled {
    pointer-events: none !important;
    cursor: not-allowed;
    opacity: 0.5;
}


/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 30%;
    color: #202020;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

a.redirect_link {
    border: none;
    padding: 10px 10px 10px 0px;
    border-radius: 5px;
    margin: 0px 2px;
    /* text-decoration: none; */
    text-transform: capitalize;
    background: transparent;
    color: #0000ff;
    font-size: 14px;
}

#forgot_password {
    display: block;
    text-decoration: none;
    color: #0000FF;
    text-align: center;
    margin: 0 auto;
}

#new_password_container {
    display: none;
}

#message_container {
    display: none;
    justify-content: center;
    align-items: center;
    margin-top: 0.75rem;
}

#message {
    margin-right: 1rem;
}

#spinner {
    height: 0.75rem;
}

#redirect_message {
    display: none;
    text-align: center;
    margin-top: 0.25rem;
}

#redirect {
    text-decoration: none;
    color: #0000FF;
    margin-left: 0.25rem;
}

#alert-box {
    position: absolute;
    display: none;
    bottom: 0vh;
    left: 35px;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    opacity: 1;
    padding: 0px 41px 2px 40px;
    z-index: 1000;
    text-align: center;
    transition: opacity 1s;
    border: none;
    box-shadow: none;
    background-color: #454545;
    color: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

#alert-box p {
    padding: 0px 0px;
    margin: 11px 0px;
}