@font-face {
    font-family: 'KasBold';
    src: url('../fonts/KasperskySans-Bold.ttf');
}
@font-face {
    font-family: 'KasLight';
    src: url('../fonts/KasperskySans-Light.ttf');
}
@font-face {
    font-family: 'KasRegular';
    src: url('../fonts/KasperskySans-Regular.ttf');
}
:root{
    --main-color: #00A88E;
    --secondary-color:#7EFF33;
}
#app{
    height:100%;
    background-image:url('../assets/normal-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
a{
    text-decoration: none;
}
h1,h2,h3,h4,h5,h6,p{
    margin:0;
}
.big-title{
    font-size:45px;
    font-family: 'KasRegular';
    color:white;
    line-height: 1.5em;
}
.big-text{
    font-size:30px;
    font-family: 'KasRegular';
    color:white;
}
.bolder{
    font-family: 'KasBold';
}
.top-wrapper{
    margin-top:30px;
}
.form-wrapper{
    margin:0 auto;
    font-family: 'KasRegular';
    width:100%;
    margin-top:12rem;
}
.input-group{
    display:flex;
    flex-direction: column;
    align-items: center;
}
.form-control,.form-select{
    width:100%;
    border:none;
    background:transparent;
    border-bottom:1px solid #265951;
    color:#265951!important;
    opacity: 1;
    font-size:25px;
    border-radius: 0;
    padding:5px 0;
}
.form-control:focus{
    background:transparent;
    border-bottom:1px solid #265951;
}
.input-wrapper{
    width:100%;
}
.form-select{
    cursor: pointer;
}
.form-control:focus,
.form-select:focus{
    outline: none;
    box-shadow: none;
}
::placeholder{
    color:black!important;
    opacity: .4!important;
}
.kas-btn{
    background:white;
    width:200px;
    height:60px;
    display:flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 5px!important;
    border-radius: 5px!important;
    color:var(--main-color);
    font-family: 'KasRegular';
    font-size:20px;
    cursor: pointer;
    box-shadow: 0px 0px 19px 7px rgba(253,252,252,0.4);
    transition: all .5s ease;
    border:none;
    z-index:10;
}
.kas-btn:focus,
.kas-btn:hover{
    color:var(--main-color);
    outline: none;
}
.kas-btn:hover{
    color:#23D1AE;
    box-shadow: 0px 0px 19px 7px rgba(35,209,174,0.4);
}
.forgotten-password{
    display:block;
    font-size:14px;
    color:white;
    margin-top:10px;
}
.forgotten-password:hover{
    color:white;
    font-family: 'KasBold';
}
.content-gap{
    max-width: 555px;
    margin: 0 auto;
    height: 100%;
    min-height: 100vh;
    padding:0 50px;
}
/* mobile */
@media(max-width:720px){
    #app{
        background-image:url('../assets/box-bg.png');
    }
    .big-title{
        font-size:25px;
    }
    .big-text{
        font-size:20px;
    }
    .form-control, .form-select{
        font-size: 18px;
    }
    .form-wrapper{
        margin-top:8rem;
    }
}

/* 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) {
}

/* 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) {
}
/* laptop */
@media(min-width:1200px) and (max-width:1600px) and (min-height:600px) and (max-height:800px){
    .big-title{
        font-size:30px;
    }
    .form-control, .form-select{
        font-size: 18px;
    }
}
