@font-face {
    font-family: 'GothamNarrowBold';
    src: url('../fonts/GothamNarrow-Bold.otf');
}
@font-face {
    font-family: 'GothamNarrowLight';
    src: url('../fonts/GothamNarrow-Light.otf');
}
@font-face {
    font-family: 'GothamBold';
    src: url('../fonts/Gotham-Bold.otf');
}
@font-face {
    font-family: 'GothamLight';
    src: url('../fonts/Gotham-Light.otf');
}
#app{
    height:100vh;
    background-image: url('../assets/background.gif');
    background-position: center;
    background-size: cover;
    position: relative;
}
a{
    text-decoration: none;
}
h1,h2,h3,h4,h5,h6,p{
    margin:0;
}
.big-title{
    font-size:45px;
    font-family: 'GothamNarrowBold';
    color:white;
    text-transform: uppercase;
    line-height: 1.5em;
}
.big-text{
    font-size:30px;
    font-family: 'GothamNarrowLight';
    color:white;
}
.default-btn{
    font-size:20px;
    font-family: 'GothamNarrowBold';
    color:white;
    text-transform: uppercase;
    display:flex;
    align-items: center;
    justify-content: center;
    background:#ED1884;
    border-radius:28px;
    border:1px solid white;
    width:180px;
    height:45px;
    margin-top:20px;
    transition: all .5s;
    cursor: pointer;
}
.default-btn:hover{
    color:white;
    transform: scale(1.1);
}
.top-wrapper{
    margin-top:30px;
}
.form-wrapper{
    max-width:500px;
    margin:0 auto;
    font-family: 'GothamNarrowLight';
    margin-top:20px;
    width:100%;
}
.form-label{
    text-transform: uppercase;
    font-family: 'GothamNarrowBold';
    color:white;
}
.input-group{
    display:flex;
    flex-direction: column;
    align-items: center;
}
.input-wrapper{
    max-width:350px;
    margin:0 auto!important;
    width:100%;
}
.form-control,.form-select{
    width:100%;
    background-color:#C490FF;
    border:none;
    color:black!important;
    opacity: 1;
    border-radius:8px;
    font-size:15px;
}
.form-select{
    cursor: pointer;
}
.form-control:focus,
.form-select:focus{
    border:none;
    outline: none;
    box-shadow: none;
    background-color:#C490FF;
}
::placeholder{
    color:black!important;
    opacity: .8!important;
}

.narrowLight{
    font-family: 'GothamNarrowLight'!important;
}
.narrowBold{
    font-family: 'GothamNarrowBold'!important;
}

.power-container {
    position: absolute;
    bottom: 1%;
    left: 50%;
    transform: translateX(-50%);
}

.power-by {
    max-width: 200px;
    width: 100%;
    height: auto;
}

/* mobile */
@media(max-width:720px){
    #app{
        /*background-image: url('../assets/mobile-home.png');*/
        /*background-image: url('../assets/mobile-background.gif');*/
    }
    .big-title{
        font-size:25px;
    }
    .big-text{
        font-size:20px;
    }
}

/* ipad potrait */
@media only screen
  and (min-device-width: 768px)
  and (max-device-width: 1024px)
  and (orientation: portrait)
  and (-webkit-min-device-pixel-ratio: 1) {
    #app{
        /*background-image: url('../assets/mobile-home.png');*/
        background-image: url('../assets/mobile-background.gif');
        background-position: top center;
    }
}

/* Ipad Landscape */
@media only screen
  and (min-device-width: 768px)
  and (max-device-width: 1024px)
  and (orientation: landscape)
  and (-webkit-min-device-pixel-ratio: 1) {
    #app{
        /*background-image: url('../assets/mobile-home.png');*/
        background-image: url('../assets/mobile-background.gif');
        background-position: top center;
    }
}
