body {
    background-color: #e6e6e6;
}
.forgot_pass_container {
    max-width: 500px;
    margin: 0px auto;
    font-family: sans-serif;
    line-height: 1.4;
    flex-direction: column;
    color:#545454;
}

.forgot_pass_container img {
    width: 60%;
    height: auto;
}

.forgot_pass_container .main_logo_img {
    display: block;
    margin: 0px auto;
}


.forgot_pass_container button {
    background: #1e2266;
    border: 0px solid black;
    color: white;
    padding: 10px;
    font-size: 0.8rem;
    margin: 15px 0px 0px 0px;
    border-radius: 5px;
}

.forgot_pass_container input[type="text"] {
    padding: 10px;
    width: 100%;
}

.forgot_pass_container h3 {
    margin: 25px 0px 0px 0px;
}

.loading_icon {
    width: 25px !important;
    vertical-align: middle;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
 from {transform:rotate(0deg)}
 to {transform:rotate(360deg)}
}