﻿@font-face {
    font-family: Gotham Rounded Bold;
    font-display: auto;
    src: url(../font/gotham-rounded-minified/GothamRounded-Bold.woff);
}

@font-face {
    font-family: Gotham Rounded Medium;
    font-display: auto;
    src: url(../font/gotham-rounded-minified/GothamRounded-Medium.woff);
}

@font-face {
    font-family: Gotham Rounded Book;
    font-display: auto;
    src: url(../font/gotham-rounded-minified/GothamRounded-Book.woff);
}

@font-face {
    font-family: Gotham Rounded Light;
    font-display: auto;
    src: url(../font/gotham-rounded-minified/GothamRounded-Light.woff);
}

body {
    background-color: #1c3e61;
    font-family: 'Gotham Rounded Book';
    color: #fff;
    padding: 40px 20px;
}

.page-header-logo {
    width: 100%;
    max-width: 130px;
    margin-bottom: 20px;
}

.page-header-title {
    display: none;
}

.form-title {
    font-size: 10vw;
    margin: 0 auto;
}

.form-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
    margin-top: 8px;
}

.form-body {
    margin-top: 60px;
}

.external-providers-container {
    margin-top: 40px;
}

.small-heading-title {
    font-size: 3.5vw;
    font-weight: 400;
}

.provider-list {
    display: grid;
}

.provider-list-item {
    margin-bottom: 10px;
    background-color: #000;
    border-radius: 6px;
}

.provider-list-item a{
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.provider-list-item .button-image {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}

.provider-list-item .button-text {
    font-size: 4vw;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    padding-left: 12px;
    text-align: left;
    width: 48vw;
    font-weight: 600;
}

.provider-google {
    background-color: #fff;
}

.provider-google .button-text{
    color: #737373;
}

.provider-facebook {
    background-color: #3b5998;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    color: #fff;
    background-color: transparent;
    text-align: left;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: none;
    -webkit-box-shadow: none;
    padding: 6px 0px;
    font-size: 16px;
    height: 45px;
}

.form-control:focus {
    color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #0CDB8F;
    outline: 0;
}

::-webkit-input-placeholder {
    color: rgba(255,255,255,0.4);
}

:-moz-placeholder {
    color: rgba(255,255,255,0.4);
}

::-moz-placeholder {
    color: rgba(255,255,255,0.4);
    opacity: 1;
}

:-ms-input-placeholder {
    color: rgba(255,255,255,0.4);
}

:-ms-input-placeholder {
    color: rgba(255,255,255,0.4);
}

.form-control::placeholder {
    color: rgba(255,255,255,0.4);
}

.form-control:focus::placeholder {
    color: rgba(255,255,255,0.4);
}

.text-link {
    color: #fff;
    
}

.btn {
    display: block;
    width: 100%;
    border: none;
    font-weight: 600;
    margin: 40px auto 0 auto;
    max-width: 250px;
    min-width: 200px;
    padding: 15px 20px;
    background-color: #2B93FF;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
}

.btn:hover {
    cursor: pointer;
}

.btn-green {
    background-color: #0CDB8F;
}

.btn-back {
    margin-bottom: 20px;
}

.policy-container {
    font-size: 10px;
    text-align: center;
    margin-top: 40px;
    max-width: 190px;
    margin: 60px auto 0 auto;
}

.policy-link {
    color: #0CDB8F;
    text-decoration: none;
}

.login-email-container {
    margin-top: 30px;
}

.alert {
    padding: 20px 30px;
    margin-bottom: 20px;
    border: 1px solid #eb3573;
    background-color: #eb3573;
    border-radius: 4px;
    font-size: 14px;
    color: #fff;
}

.alert-custom  ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.no-provider {
    margin-top: 30px;
}

.nav-container {
    text-align:center;
    margin-top: 100px;
}

.nav-link-box {
    display: inline-block;
    padding: 0 20px;
}

.nav-container .alink{
    color: #0CDB8F;
    text-decoration: none;
}

.nav-container .nav-link-box:first-child {
    border-right: 1px solid #eee;
    padding-right: 22px;
}

.form-body-small-gap {
    margin-top: 30px;
}

@media only screen and (min-width: 768px) {
    .page-header-logo {
        max-width: 200px;
    }
    .page-header-logo-small {
        max-width: 150px;
    }
    .grid-container {
        display: grid;
        grid-template-columns: 1.5fr 2fr;
        column-gap: 50px;
    }

    .grid-one-container {
        margin: 0 auto;
        max-width: 450px;
    }
    
    .page-header-title {
        display: block;
        font-size: 5vw;
        font-weight: 500;
        margin-top: 0;
    }
    .form-title {
        font-size: 5vw;
    }

    .small-heading-title {
        font-size: 16px;
        display: inline-block;
    }

    .external-providers-container {
        display:grid;
        grid-template-columns: 2fr 1.5fr;
    }

    .provider-list {
        align-items: center;
        display: inline-grid;
        grid-template-columns: auto auto auto;
        text-align: right;
    }

    .provider-list-item {
        margin-bottom: 0;
        background-color: transparent;
        border-radius: 0;
    }

    .provider-list-item a{
        padding: 0;
        text-decoration: none;
        display: inline-block;
        text-align: center;
    }

    .provider-list-item .button-text {
        display: none;
    }

    .provider-list-item .button-image {
        width: 38px;
        height: 38px;
    }

    .policy-container {
        grid-column: 1 / span 2;
        grid-row: 2;
        max-width: initial;
    }
}

@media only screen and (min-width: 1024px) {
    body {
        padding: 0 40px;
        height: 97vh;
        align-content: center;
    }

    .page-header-title {
        font-size: 50px;
        max-width: 400px;
    }

    .grid-container {
        max-width: 1000px;
        margin: 0 auto;
    }

    .form-title {
        font-size: 38px;
    }

    .grid-container {
        grid-template-columns: 2fr 1.8fr;
    }

    .logo-container {
        margin-top: 20px;
    }
}

@media only screen and (min-width: 1440px) {
    .grid-container {
        grid-template-columns: 2fr 1.2fr;
    }
}

//two factor

.qr-code-container {
    padding: 10px 0;
}

.white-link {
    color: #fff;
}

.white-link:hover {
    color: #fff;
}


.grid-center {
    align-items: center;
}

.qr-code-clipboard {
    background-color: #eee;
    margin-top: 10px;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
    padding: 10px;
}

    .qr-code-clipboard span {
        color: #000;
        position: relative;
        top: -2px;
        font-size: 16px;
    }

.qr-code-container {
    margin-top: 20px;
}

    .qr-code-container img {
        margin: 0 auto;
    }

.verification-form {
    margin-bottom: 60px;
}

.verification-form label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.verification-btn {
    margin: 0 auto;
    width: 100%;
    background-color: #0CDB8F;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 600;
    max-width: initial;
}

    .verification-btn:hover {
        background-color: #0CDB8F;
    }

.redirect-btn {
    margin-top: 20px;
    width: 200px;
    text-align: center;
    text-decoration: none;
    margin:initial;
}


.regular-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #eee;
    width: 100%;
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
}

    .regular-btn:hover {
        cursor: pointer;
    }

    .regular-btn span {
        color: #000;
    }

    .regular-btn > div {
        font-size: 14px;
        font-weight: 400;
    }

.two-factor-instruction li {
    margin-bottom: 10px;
}

#tooltip {
    visibility: hidden;
    color: #fff;
    background-color: #333;
    min-width: 250px;
    margin-left: -125px;
    border-radius: 2px;
    padding: 16px;
    text-align: center;
    left: 50%;
    bottom: 30px;
    z-index: 1;
    position: fixed;
}

    /* This will be activated when the snackbar's class is 'show' which will be added through JS */
    #tooltip.show-tooltip {
        visibility: visible;
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

.input-box-control {
    border: 1px solid;
    padding: 6px 20px;
}

.two-column-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.alert-custom {
    background-color: #eb3573;
    color: #fff;
    border: none;
}

    .alert-custom ul {
        list-style: none;
        padding-left: 15px;
    }

.alert-message {
    padding: 10px 20px;
    margin-bottom: 10px;
}

#two-fa-login {
    max-width: 300px;
}

.recovery-code-container {
    max-width: 450px;
    margin: 0 auto;
    padding: 20px 15px;
}

.relative-btn svg {
    position: relative;
    left: 0;
    top: 4px;
}

.relative-btn span {
    position: relative;
    top: -2px;
    font-size: 16px;
}

/* Animations for fading in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

.two-fa-logo {
    max-width: 150px;
}


.page-header {
    margin-top: 60px;
    border-bottom: none;
    text-align: center;
}

.logged-out a {
    color: #337ab7;
    text-decoration: none;
}

#forgotPassword #recaptcha_element {
    justify-items: center;
}

#tooltip {
    visibility: hidden;
    color: #fff;
    background-color: red;
    min-width: 250px;
    margin-left: -125px;
    border-radius: 2px;
    padding: 16px;
    text-align: center;
    left: 50%;
    bottom: 30px;
    z-index: 1;
    position: absolute;
}