@font-face {
    font-family: 'Gotham-Book';
    src: url('/wp-content/themes/flatsome-child/fonts/Gotham Book.woff2') format('woff2'),
         url('/wp-content/themes/flatsome-child/fonts/Gotham Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Gotham-Book' !important;
}

.login-header {
    display: flex;
    background-color: #000;
    height: 83px;
    padding: 10px;
}

.logo-image {
    width: auto;
    height: 63px;
    margin: 0 auto;
}

.login-container {
    display: flex;
    width: 100vw;
    height: calc(100vh - 73px);
    background-color: #fff;
}

.login-info {
    display: flex;
    flex-direction: column;
    width: 100vw;
    max-width: 27rem;
    margin: 50px auto;
    padding: 0 25px;
}

.login-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.login-button {
    width: 45% !important;
    height: 50px;
    background-color: #d90000;
    color: #fff;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 15px !important;
    padding: 16px 20px;
    text-transform: unset;
    line-height: unset;
}

.login-button:not(:disabled):hover {
    background-color: #f82828;
}

.login-button:not(:disabled):active {
    scale: 0.98;
}

.login-button:disabled {
    cursor: not-allowed;
}

.login-a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45%;
    height: 50px;
    border-radius: 4px;
    background-color: #d5d5d5;
}

.login-a:not(:disabled):hover {
    background-color: #e4e4e4;
}

.login-a:not(:disabled):active {
    scale: 0.98;
}

.login-a:disabled {
    cursor: not-allowed;
}

.code-spinner {
    border: 4px solid #f3f3f3; 
    border-top: 4px solid #fd0202; 
    border-radius: 50%; 
    width: 25px; 
    height: 25px; 
    animation: spin 1s linear infinite; 
    display: inline-flex; 
    margin-left: 10px; 
}

.err-msg {
    font-size: 15px;
    font-weight: 900;
    color: #d90000;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.forgot {
    text-align: center;
}

@media (max-width: 500px){
    .login-header {
        height: 63px;
    }

    .logo-image {
        height: 43px;
    }

    .login-info {
        max-width: 100%;
    }
}

@media (max-width: 400px){
    .login-button,
    .forgot,
    .login-a,
    label,
    input,
    .err-msg {
        font-size: 12px !important;
    }

    .login-a,
    .login-button {
        height: 40px;
    }
}

