/* main block */
.main {
    border: 2px solid;
    width: 700px;
    height: 700px;
    margin-top: 10px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
  }

.main_content {
    margin-top: 50px;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
}

.logo {
    width: 500px;
    height: auto;
    margin-left: 10%;
    margin-right: 5%;
}

/* ************************************************************************************** */
/* Form Layout */

.form {
    width: 400px;
    padding: 2%;
    margin-top:100px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin-left: 5%;
  }

.form_log {
    width: auto;
}

.form_line {
    margin-top: 5%;
    margin-bottom: 10%;
    display: flex;
    height: 30px;
}


.form_link{
    text-align: right;
}

.form_link a, .form_link_nda a
{
    color: blue;
    font-size: larger;
    text-decoration: solid;
    font-weight: bold;
}

.form_link a:hover, .form_link_nda a:hover
{
    text-decoration: underline;
}

.form_link_nda{
    text-align: center;
}

.form_line label {
    width:100px;
    justify-content: right;
    align-items: center;
    padding-right: 5px;
    padding-top: 3px;
    font-size: large;
    display: block;
    font-weight: bold;
}

.form_log input {
    width: 300px;
    outline: none;
    border: 1px solid #D3DBE5;
    border-radius: 8px;
    padding: 0 12px 0 12px;
}
.form_log input:hover
{
    background-color: #dedede;
}
.form_log input:focus
{
    border-color: #65707D;
}

.form_log button {
/*     min-width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    height:30px;
    font-weight: bold;
    margin-left: 258px;
    margin-top: 50px;
    background-color: rgb(129, 182, 227);
    border-radius: 5px; */
    width: fit-content;
    height: 44px;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    margin:8px;
    text-align: center;
    cursor: pointer;
    background: #20558A;
    color: #F7F9FA;
    border: none;
    margin-left: 75%;
    margin-top: 5%;
}

.nda_btn{
    height: 44px;
    width: 100px;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    margin:8px;
    text-align: center;
    cursor: pointer;
    background: #20558A;
    color: #F7F9FA;
    border: none;
    margin-top: 5%;
}

.form_log button:hover
{
    background-color:#4579AE;
}
.form_log button:active
{
    background-color: #0F2A43;    
}
.form_log button:disabled
{
    background-color: #F0F2F5;
    color: #B8C1CC;
    cursor: not-allowed;
}
.form_log button:focus
{
    border: 2px solid #0F2A43;
    padding: 10px;
}

#href_continue {
    min-width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    height:30px;
    font-weight: bold;
    margin-left: 258px;
    margin-top: 10%;
    background-color: rgb(129, 182, 227);
    border-radius: 5px;
    border: 5px;
}

.button-container {
    display: flex;
    justify-content: space-between;
}

/* ****************************************************************************************** */
/* Line showing icons in the password reset page */
.confirmation_line_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-left: 30%;
    height: auto;
}
.confirmation_line {
    margin-bottom: 5px;
    align-items: center;
    display: flex;
    font-size: 0.8em;
}
.confirmation_line img {
    width:20px;
    margin-right: 8px;
}

/* Class for auth pages background */
.auth_background{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.popup_title h2
{
    margin-bottom: 0;
}

/**************************************************************************************************/
/* show-hide password button */
.form_log .show_password_button
{
    margin:0;
    padding:0;
    height: 93%;
    display: flex;
    align-items: center;
    position:relative;
    right:27px;
    top:1px;
}
.form_log .show_password_button .eye_slash
{
    height: 22px;
    display:none;
}
.form_log .show_password_button .eye
{
    height: 15px;
}

.characters
{
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}
.characters div
{
    display: flex;
    align-items: center;
    margin-bottom: 1px;
}
.characters div span
{
    margin-left: 8px;
}
.times_characters
{
    display: none;
}
.check_characters
{
    width:20px;
    display: none;
}

/**************************************************************************************************/
/* popup terms and conditions */
.terms_conditions
{
    font-size: 12pt;
}
.terms_conditions h3
{
    font-weight: bold;
    margin-top: 24px;
    margin-bottom: 8px;
}
.terms_conditions .terms_conditions_list
{
    margin-left: 35px;
    margin-top: 16px;
}
.terms_conditions .terms_conditions_list ul
{
    margin-left: 35px;
}