﻿
* {
    box-sizing: content-box;
    font-family: var(--font_family);
}

body {
    overflow-y: scroll;
    overscroll-behavior-y: none;
}

body, html {
    min-height: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--solid_color_tertiary);
    transition: background-color .2s ease;
}

:root {
    --font_family: system-ui, -apple-system, BlinkMacSystemFont, Roboto, Ubuntu, "Helvetica Neue", sans-serif;
    --hud_bg_black: #000000;
    --hud_bg_root: #000080;
    --hud_bg_primary: #9BD3DD;
    --hud_bg_secondary: #7ea2a7;
    --hud_bg_tertiary: #5e959e;
    --hud_bg_hudgrid: #2f3136;
    --hud_text_light: #f1f3f4;
    --hud_text_dark: #212529;
    --hud_body_font_size: 1rem;
    --hud_body_font_weight: 400;
    --hud_body_line_height: 1.5;
    --hud_border: #777;
    --hud_border_light: #8A8B8E;
    --adobe_red: #FF0000;
    --excel_green: #10793F;
    --fs_n: 1.4rem;
    --fs_cbo: 0.8rem;
    --fs_ctl: 0.875rem;
    --bs_btn_hover_bg: #6c757d;
}

@media (min-width: 0px) and (max-width: 767px) {
    .form-container {
        max-width: none !important;
        min-width: 280px !important;
        width: 90%;
        border-radius: 0 !important;
    }
}

.container {
    display: flex;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    /*overflow-y: scroll;*/
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    background-color: #06080f;
}

.container abbr {
    border-bottom: none !important;
    cursor: inherit !important;
    text-decoration: none !important;
}

.logo-container {
    display: flex;
    width: 100%;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
}

.form-container {
    display: flex;
    padding: 16px 20px;
    min-width: 360px;
    max-width: 400px;
    border-radius: 8px;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    background-color: #0d1117;
    border: 1px solid rgba(14, 131, 69, 0.12);
}

.flash-message {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
}

.alert.flash-message {
    color: #ff6b6b;
}

.notice.flash-message {
    color: #a3adbe;
}

.simple_form {
    display: flex;
    margin: 0;
    flex-direction: column;
}

.form-title {
    display: flex;
    margin: 0;
    font-family: var(--font_family);
    color: #f0f2f8;
    align-items: center;
    justify-content: center;
    padding: 6px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
}

.fields-group {
    display: flex;
    width: 100%;
    margin-bottom: 12px;
    padding: 0;
}

.fields-group-agreement .with_label, .fields-group .with_label {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    flex-direction: column;
}

.fields-group .with_label .label_input {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    flex-direction: column;
}

.fields-group .with_label .label_input > label {
    display: flex;
    width: 100%;
    margin: 0;
    margin-bottom: 5px;
    padding: 0;
    font-family: var(--font_family);
    color: #a3adbe;
    font-size: 12px;
}

.form-footer, .actions, .fields-group .label_input__wrapper {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
}

.fields-group .with_label .label_input input {
    display: flex;
    width: 100%;
    line-height: 40px;
    height: 40px;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 10px;
    font-size: 15px;
    color: #f0f2f8;
    background-color: #131a24;
    border-color: rgba(14, 131, 69, 0.12);
    transition: border-color 0.2s ease;
    box-sizing: content-box;
}

.fields-group .with_label .label_input input:focus, .focus-border {
    border-color: var(--hud_bg_secondary) !important;
    box-shadow: 0 0 0 2px rgba(14, 131, 69, 0.15);
}

.fields-group .with_label .error {
    margin-top: 5px;
    font-size: 12px;
    color: #ff6b6b;
}

.fields-group .with_label .hint {
    font-family: var(--font_family);
    margin-top: 5px;
    font-size: 12px;
    color: #7a8494;
}

input.btn:hover {
    background-color: var(--hud_bg_tertiary);
}

input.btn {
    display: flex;
    width: 100%;
    margin-top: 5px;
    background-color: var(--hud_bg_secondary);
    color: white;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    line-height: 42px;
    height: 42px;
    border-radius: 8px;
    border: none;
    font-family: var(--font_family);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.no-list {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 20px 0 20px;
    margin-top: 14px;
    border-top: 1px solid rgba(14, 131, 69, 0.12);
    list-style: none;
}

.no-list li {
    display: flex;
    padding: 5px 10px;
    cursor: pointer;
}

.no-list li a {
    font-family: var(--font_family);
    color: #a3adbe;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}
