@font-face {
    font-family: "gotham";
    src: url(fonts/gotham.otf);
}

@font-face {
    font-family: "gotham";
    font-weight: bold;
    src: url(fonts/gotham-bold.otf);
}

* {
    margin: 0;
    padding: 0;

    color: white;
    font-size: 16px;
    font-family: "gotham";
}

html{
    background-image: url(images/bg.png);
    background-size: cover;
    background-position-y: top;
    background-position-x: right;
    background-color: #eca218;
    background-repeat: no-repeat;
}

html, body{
    height: 100%;
}

.container{
    width: 100%;
    height: 100%;
}

.header{
    padding: 60px 0 80px;
}

.header .logo{
    width: 50%;
    max-width: 120px;
    height: auto;

    display: block;
    margin: 0 auto;
}

.main{
    width: 80%;

    margin: 0 auto;
    padding-bottom: 10px;
}

.page {
    display: none;
}

.page.active{
    display: block;
}

.title{
    text-align: center;
    font-weight: bold;
    font-size: 1.5em;

    max-width: 10em;
    margin: 0 auto;
}

.text{
    text-align: center;
    max-width: 16em;
    margin: 0 auto;
}

.btn{
    font-size: 1.6em;
    text-align: center;

    box-sizing: border-box;
    max-width: 314px;
    padding: 20px 1.5em;
    border: 2px solid white;
    margin: 0 auto;

    cursor: pointer;

    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

.btn:active{
    background-color: #f6a800;
}

.input{
    box-sizing: border-box;
    width: 100%;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 5px;
    padding: 10px 5px;
    outline: none;
}

.input:focus{
    border-color: #f6a800;
}

/* Utils */
.border{
    border: 2px solid white;
    padding: 20px;
}

.mb{
    margin-bottom: 20px;
}

.btn-width{
    box-sizing: border-box;
    max-width: 314px;
    margin-left: auto;
    margin-right: auto;
}

.pointer{
    cursor: pointer;
}

@media (min-width: 600px){
    html{
        background-image: url("images/bg_2.png");
    }
}

/* loader */
.loader-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.60);
    display: flex;
    justify-content: center;
    align-items: center;
}

.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}