/**
 * CUSTOM LOGIN PAGE CSS v1.0
 * Custom style only for login form
 * 
 * @author (c) Enso Coding 2019
 * @license GNU General public licence 
 */

body,
h1,
h2,
h3,
h4,
h5 {
    font-family: "Poppins", sans-serif;
}

body {
    font-size: 14px;
}

.main-content {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.topbar {
    width: 100%;
    min-width: 300px;
    height: 40vh;
    min-height: 220px;
    display: flex;
    flex-direction: column-reverse;
    justify-items: flex-start;
    align-items: center;
    justify-content: center;
    align-content: normal;
}

.title-header {
    width: 100%;
    min-width: 300px;
    height: 10vh;
    max-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-logo {
    width: 100%;
    min-width: 300px;
    height: 20vh;
    max-height: 240px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.message {
    z-index: 3;
    width: 100%;
    max-width: 800px;
    margin-bottom: 2px;
}

.tab {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

input {
    border: 1px solid #ccaa00;
    width: 100%;
    max-width: 800px;
    margin: 10px auto;
    padding: 2px;
    text-align: center;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    word-wrap: break-word;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
}

.button {
    z-index: 4;
    border: none;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    vertical-align: middle;
    margin: 5px auto;
    padding: 2px;
    width: 100%;
    max-width: 800px;
    height: 35px;
    font-family: "Poppins", sans-serif;
    font-size: 16px!important;
}

.button-retry {
    margin-top: 2px;
}

.button:hover {
    opacity: 0.7;
}