/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~ GENERAL ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
html {
	height: 100%;
}
body {
	font-family: myComfortaa,sans-serif;
	color: #595959;
	background: #E2E9F6;
	margin: 0;
	height: 100%;    
    position: relative;
}
label,button {
    margin-top: 15px;
}
input[type=text],
input[type=password] {
    font-family: inherit;
    width: 100%;
    border: 2px solid #aaa;
    border-radius: 25px;
    margin: 4px 0 8px;
    outline: none;
    padding: 9px 0 9px 15px;
    box-sizing: border-box;
    transition: 0.3s;
    font-size: 16pt;
    background: white;
    color: #595959;
}
input[type=text]:focus,
input[type=password]:focus {
    border-color: dodgerBlue;
    box-shadow: 0 0 8px 0 dodgerBlue;
}
button {
    font-family: inherit;
    outline: none;
    border-radius: 30px;
    font-size: 16pt;
    background: #10C6F8;
    padding: 15px;
    border: none;
    border: 2px solid #aaa;
    width: fit-content;
    align-self: center;
    color: #595959;
}
button:hover {
    cursor: pointer;
}
button:disabled {
    background: #B1B4B5;
    cursor: default;
    opacity: 0.4;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~ SPECIFIC STYLE ATTRIBUTES ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.flex_column {
    display: flex;
    flex-direction: column;
}
.flex_row {
    display: flex;
    flex-direction: row;
}
.app_name {
    margin-top: 10px;
    font-size: 17pt;
    font-weight: bold;
}
.version {
    position: relative;
    font-size: 10pt;
    margin-left: 2px;
}
.content {
    margin: 0 auto;
    max-width: 500px;
    height: 100%;
    padding: 0 20px;
}
#logo {
    opacity: 0.55;
    height: 220px;
    min-height: 220px;
    align-self: center;
    margin-top: 15px;
}
.message {
    display: none;
    position: absolute;
    top: 25px;
    flex-direction: column;
    gap: 5px;
    background: cornsilk;
    z-index: 1;
    padding: 7px 10px;
    border: black 1px solid;
    border-radius: 15px;
    font-weight: bold;
}
.close_button {
    padding: 3px;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    font-size: 1pt;
    background: white;
    position: absolute;
    top: -16px;
    right: -28px;
    border: black 1px solid;
}
.close_x {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}
.error_text, .message_text {
    font-size: 9pt;
    font-weight: normal;
}
.login_button {
    margin-top: 20px;
    position: relative;
}
.lds-spinner {
    display: none;
    position: absolute;
    left: calc(100% + -20px);
    top: 11px;
}
.lds-spinner div::after {
    width: 2px;
    height: 6px;
}
.lds-spinner div {
    transform-origin: 38px 15px;
}
.forgot_password_link {
    margin-top: 35px;
    align-self: center;
}
.aphorism {
    font-size: 10pt;
    margin-top: 35px;
    align-self: center;    
}
.copywrite {
    margin: auto 0 10px 0;
    padding-top: 20px;
    font-size: 8pt;
    align-self: center;
    opacity: 0.6;
}
.copywrite_content:not(:last-child) {
    border-right: 1px solid #595959;
    margin-right: 5px;
    padding-right: 5px;
}