@import url("scripts/css/vars.css");

body {
    background-color: var(--gray-moth-color);
}

h3 {
    margin: 0 0 10px 0;
    text-align: left;
    color: var(--shadow-gray-color);
    margin-bottom: 10px;
    font-size: 18.75px;
    font-weight: normal;
    line-height: 23px;
    font-family: Inter-Bold;
    font-style: normal;
}

.main_container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.corner_logo {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -10;
}

.top_header {
    align-items: center;
    background-image: url(images/login-header.svg);
    width: 600px;
    height: 200px;
    background-position: center;
    background-size: 200%;
}

.main_form_container {
    margin-block-end: 0 !important;
    height: 600px;
}

.form_container {
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid var(--elusive-gray-color);
    box-sizing: border-box;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    font-family: Inter-Regular;
}

.login_form_container {
    display: flex;
    flex-direction: column;
    width: 361px;
}

.form_container.success-message h3 {
    text-align: center;
}
.form_container.success-message p {
    color: var(--gray-color);
    font-size: 10px;
}

.response_message {
    text-align: center;
    font-size: 12px;
}

.response_message h3 {
    text-align: center;
    margin-top: 20px;
}

.response_message .response-text {
    border: 1px solid var(--elusive-gray-color);
    border-width: 1px 0 1px 0;
    margin: 22px 0 10px 0;
    padding: 22px 0;
}

.form-subtitle {
    font-family: Inter-Regular;
    font-weight: 400;
    font-size: 10px;
    line-height: 140%;
}

.middle_container {
    display: flex;
    justify-content: center;
    min-height: 310px;
}

.middle_container_long {
    display: flex;
    justify-content: center;
    height: 485px;
}

.left_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 361px;
}

.bottom_container {
    display: flex; 
    padding-bottom: 50px;
    padding-top: 20px;
}

.bottom_container a {
    text-decoration: underline;
    color: var(--ia-blue-color);
}

.input_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 14px 0 0 0;
}

.login_button_container {
    display: flex; 
    justify-content: space-around;
    margin-top: 20px;
}

.login-help {
    text-align: right;
    padding: 6px;
}

.login-help a {
    font-family: Inter-Regular;
    font-weight: 400;
    font-size: 9.6px;
    line-height: 12px;
    text-decoration-line: underline;
    color: var(--ia-blue-color);
}

.login_input_field, .reset_input_field {
    padding: 15px 20px;
    width: 230px;
    height: 45px;
    background: var(--gray-moth-color);
    border-radius: 8px;
    border-width: 0px !important;
}

.login_input_field::placeholder, .reset_input_field::placeholder {
    font-family: Inter-Regular;
    opacity: 1;
    color: var(--gray-color);
}

.login_input_width {
    width: 230px;
}

@font-face {
    font-family: Inter-Regular;
    src: url('fonts/Inter-Regular.ttf');
}

@font-face {
    font-family: Inter-Bold;
    src: url('fonts/Inter-Bold.ttf');
}

.inter_font_bold {
    font-family: Inter-Bold;
    font-style: normal;
}

.inter_font {
    font-family: Inter-Regular;
    font-style: normal;
    font-weight: normal;
}

.x_large_font {
    font-size: 38px;
    line-height: 46px;
}

.large_font {
    font-size: 18.75px;
    line-height: 23px;
}

.medium_font {
    font-size: 14px;
    line-height: 16px;
}

.small_font {
    font-size: 12px;
    line-height: 15px;
}

.x_small_font {
    font-size: 9.6px; 
    line-height: 12px;
}

.small_margin_bottom {
    margin-bottom: 10px;
}

.small_margin_right {
    margin-right: 10px;
}

.color_black {
    color: var(--shadow-gray-color);
}

.color_white {
    color: #FFFFFF;
}

.color_gray {
    color: var(--stormy-gray-color);
}

.color_light_gray {
    color: var(--quiet-coast-color);
}

.color_link_blue {
    color: var(--ia-blue-color);
}

.color_error_red {
    color: var(--coral-color);
}

.relative_position {
    position: relative;
}

.button_tooltip {
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    width: 100px;
    height: 14px;
    position: absolute;
    right: -45;
    top: -25;
    background-color: var(--shadow-gray-color);
}

.button_show_password {
    position: absolute;
    right: 10;
    cursor: pointer;
}

.button_clear {
    flex: 1; 
    background: #FFFFFF; 
    border-width: 0px;
}

.button_clear_text {
    font-size: 14px; 
    line-height: 17px; 
    color: var(--gray-color);
    cursor:pointer;
}

.button_login {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex: 1; 
    height: 36px; 
    width: 155.75px; 
    padding: 10px 16px; 
    background: var(--ia-blue-color);
    border-radius: 8px; 
    border-width: 0px !important; 
    cursor:pointer;
}

.button_login_text {
    font-size: 14px; 
    line-height: 17px; 
    color: #FFFFFF;
}

.visibility_hidden {
    visibility: hidden;
}

.light_gray_line {
    min-width: 321.5px;
    border: 1px solid var(--elusive-gray-color);
    margin-top: 10px;
}

.dark_gray_line {
    border: 1px solid var(--gray-color);
    margin-right: 10px;
}

.text_underline {
    text-decoration-line: underline;
}

.database_select {
    border-width: 0px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    padding: 15px;
    width: 230px;
    height: 45px;
    background: var(--gray-moth-color);
    border-radius: 8px;
    color: var(--gray-color);
}

.no_pointer_event {
    pointer-events: none;
}

.form_error {
    font-weight: 400;
    font-size: 10px;
    line-height: 140%;
    color: var(--coral-color);
    margin: 10px 0;
}

.kendo-modal {
    font-family: Inter-Regular;
    color: var(--shadow-gray-color);
    top: 0;
}
.kendo-modal .k-window-titlebar {
    background: none;
    border: none;
}

.modal-message {
    font-size: 12px;
    line-height: 140%;
    text-align: center;
}

.success-modal-img, .confirmation-modal-img, .warning-modal-img, .info-modal-img {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.confirmation-modal-img {
    margin-bottom: 10px;
}

.success-modal-img > span {
    font-size: 6rem;
    color: var(--meadow-color);
}

.confirmation-modal-img > span {
    color: var(--marigold-color);
    font-size: 6rem;
}

.warning-modal-img > span {
    font-size: 6rem;
    color: var(--coral-color);
}

.warning-modal-img > strong {
    padding-top: 10px;
}

.confirmation-modal-buttons {
    display: flex;
    margin: auto;
}

.success-modal-img > strong, .confirmation-modal-img {
    font-size: 18.75px;
    margin-top: 20px;
}

.kendo-modal .light_gray_line {
    width: 100%;
    min-width: auto;
    margin: 20px 0;
}
.request_credentials {
    margin-top: 45px;
    font-size: 12px;
    color: var(--stormy-gray-color);
}
.request_credentials a {
    color: var(--ia-blue-color);
}
