/* MAIN Color: #0055A4; */

html, body {
    padding: 0;
    margin: 0;
}

body {
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background-color: #f3f3f3;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: white;
    padding: 10px 0 20px;
}

.header-logo {
    margin-top: 20px;
    margin-left: 5px;
    margin-right: 5px;
    float: left;
    text-align: center;
    width: 104px;
    height: 35px;
}

.title {
    margin-top: 2.5rem;
}

.title-text {
    font-weight: 300;
    text-align: center;
}

.form {
    background-color: white;
    width: 500px;
    margin: 0 auto;
    padding: 50px 40px;
    box-sizing: border-box;
}

.form h2 {
    font-size: 16px;
    font-weight: 500;
    color: #4a4a4a;
    margin: 0;
}

.form input[type="text"], .form input[type="password"] {
    width: 100%;
    height: 40px;
    margin-top: 15px;
    border-radius: 5px;
    border: 1px solid #b9b9b9;
    font-size: 16px;
    padding: 0 20px;
    box-sizing: border-box;
}

.form input[type="text"]:focus, .form input[type="password"]:focus {
    background-color: rgb(232, 240, 254);
    border: 1px solid #b9b9b9;
    outline: none
    ;
}

.form-submit {
    display: flex;
    justify-content: flex-end;
}

.form input[type="submit"] {
    background-color: #0055A4;
    color: white;
    border-radius: 5px;
    width: 100%;
    border: none;
    padding: 15px 20px;
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    float: right;
    cursor: pointer;
}
.form input[type="submit"]:disabled {
    opacity: .65;
}
.form input[type="submit"].send-code{
    text-decoration: none;
    color: #0055A4;
    background-color: white;
    border: 0px;
    padding: 0px;
    font-size: 14px;
    text-align: right;
    margin: 0px;
    display: inline-block;
    float: none;
}
.form input[type="submit"].send-code:hover{
    text-decoration: underline;
}
footer {
    position: fixed;
    bottom: 0;
    background: white;
    width: 100%;
    text-align: center;
    padding: 10px;
    color: #4a4a4a;
    font-size: 12px;
}

.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-top: 0.6rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-secondary {
    color: #383d41;
    background-color: #f3f3f3;
    border-color: #d6d8db;
}

.nav{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0rem;
}
.nav .create-new-account{
    display: inline-block;
    float:left;
    font-size: 1rem;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
}
.nav .reset-password{
    display: inline-block;
    float: right;
    font-size : 1rem;

    padding: 0.5rem 0rem 0.5rem 0.5rem;
}

.loginSignUpSeparator{
  border-top: 1px solid #cbd2d6;
  position: relative;
  margin-top: 4.72%;
  height: 15px;
  text-align: center;
}

.loginSignUpSeparator .textInSeparator {
    background-color: #fff;
    padding: 0 0.5em;
    position: relative;
    color: #6c7378;
    top: -0.7em;
    }

a.create-account:hover{
    background-color: #0055A4;
    color: white;
    border-radius: 5px;
    width: 100%;
    border: none;
    padding: 15px 20px;
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    float: right;
    cursor: pointer;
}
a.create-account{
    color:  #0055A4;
    border-radius: 5px;
    border:solid 1px;
    border-color:#0055A4;
    width: 100%;
    padding: 15px 20px;
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    float: right;
    cursor: pointer;
}
a{
    text-decoration:none;
    color: #0055A4;
}
a.reset-password:hover{
    background-color: #009dcc;
}
a.reset-password{
    display: block;
    padding: 10px 20px;
    background-color: #0055A4;
    color: white;
    border-radius: 4px;
    width: 60%;
    margin: 0 auto;
    transition: 0.3s;
}

.otp h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #009dcc;
    font-size: 18px;
}

.otp-error {
    text-align: center;
    font-size: 14px;
    padding: 0 30px;
    margin-bottom: 20px;
    font-weight: bold;
}
.otp-title {
    text-align: center;
    font-size: 24px !important;
    margin-bottom: 40px !important;
}

.otp-info {
    text-align: center;
    font-size: 14px;
    padding: 0 30px;
    margin-bottom: 20px;
    font-weight: 500;
}

.otp-timer {
    text-align: center;
    font-size: 12px;
    color: #808080;
    margin-bottom: 30px;
}