﻿:root {
    --main-backgroud-color: #fff;
    --main-font-family: 'Montserrat';
    --main-max-width: 260px;
    --main-font-size: 16px;
}

html, body, form {
    height: 100vh;
}

body {
    background-color: var(--main-backgroud-color);
    font-family: var(--main-font-family);
    font-size: 16px;
}

form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.axamit-title {
    margin: 0px auto;
    margin-top: 4px;
    font-size: 24px;
    text-align: center;
    font-style: italic;
    color: #323232;
    letter-spacing: 1.6px;
}

.axamit-title > span:first-child {
    /*display: block;
    text-align: left;*/
}

.axamit-title > span:last-child {
    margin-left: 10px;
    /*display: block;
    text-align: right;*/
}

.axamit-main-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 10px;
    box-sizing: border-box;
}

.axamit-main-container > div {
    margin-top: -20%;
}

.axamit-form-group {
    margin: 20px auto;
    max-width: var(--main-max-width);
    width: 100%;
}

.axamit-form-group > label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.axamit-form-group > input {
    display: block;
    width: inherit;
    padding: 6px 10px;
    border: none;
    outline: none;
    background: none;
    border-bottom: 1px solid #a2a2a2;
    box-sizing: border-box;
}

.axamit-btn {
    display: block;
    max-width: 260px;
    width: 100%;
    margin: 0px auto;
    padding: 6px 10px;
    color: white;
    text-align: center;
    outline: none;
    border: 1px solid #007bff;
    border-radius: 4px;
    cursor: pointer;
    background-color: #007bff;
    box-sizing: border-box;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.axamit-btn:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

.axamit-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(38,143,255,.5);
}

.axamit-logo {
    display: block;
    max-width: var(--main-max-width);
    width: 100%;
    height: auto;
    margin: 0px auto;
    text-align: center;
}

.axamit-aarco-page {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.axamit-aarco-page > i {
    font-size: 30px;
    margin-right: 6px;
}

.axamit-aarco-page > span {
    position: relative;
    top: 2px;
    font-size: 16px;
    text-align: center;
}

.axamit-aarco-page:hover > span {
    text-decoration: underline;
}

footer {
    width: 100%;
    padding: 6px;
    box-sizing: border-box;
    background-color: #323232;
}

.axamit-txt-user {
    text-transform: uppercase;
}

/* WebKit browsers */
::-webkit-input-placeholder {
    font-weight: normal;
    font-size: var(--main-font-size);
    text-transform: none;
}

/* Mozilla Firefox 4 to 18 */
:-moz-placeholder {
    font-weight: normal;
    font-size: var(--main-font-size);
    text-transform: none;
}

/* Mozilla Firefox 19+ */
::-moz-placeholder {
    font-weight: normal;
    font-size: var(--main-font-size);
    text-transform: none;
}

/* Internet Explorer 10+ */
:-ms-input-placeholder {
    font-weight: normal;
    font-size: var(--main-font-size);
    text-transform: none;
}

.axamit-logo-container {
    max-width: var(--main-max-width);
    margin: 0px auto 0px auto;
}

.axamit-alert {
    max-width: 768px;
    margin: 20px auto 0px auto;
    padding: 10px;
    color: white;
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #121212;
}

.axamit-alert > p {
    margin: 0px;
}

.axamit-alert > p:first-child {
    font-weight: 600;
}

.axamit-alert > p:last-child {
    margin-top: 10px;
    font-size: 14px;
}

.axamit-alert-success {
    color: white;
    background-color: #4caf50;
}

.axamit-alert-warning {
    color: white;
    background-color: #ffeb3b;
}

.axamit-alert-danger {
    color: white;
    background-color: #f44336;
}

.axamit-alert-question,
.axamit-alert-info {
    color: white;
    background-color: #2196f3;
}

@media only screen and (max-width: 768px) {
    .axamit-aarco-page > span {
        font-size: 14px;
    }
}
