@font-face {
    font-family: 'hornetmedia';
    src: url('./fonts/adam-webfont.woff2') format('woff2'),
         url('./fonts/adam-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-size: 20px;
/*    font-family: 'hornetmedia', Arial, sans-serif;*/
    font-family: Arial, sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
    margin: 20px 0;
}

.login {
    margin: 0;
    justify-content: space-evenly;
    height: 100%;
}

#hero {
    width: 60%;
    height: 100%;
    background-color: #FDB740;
    display: flex;
    justify-content: center;
    align-items: center;
}

#bug {
    width: 50%;
    height: auto;
    transition: all 400ms ease-out;
}

#login-form {
    width: 40%;
    min-width: 420px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
}

#login-form #loginForm {
    max-width: 350px;
    margin: 0 auto;
}

.spacer {
    height: 100%;
    width: 100%;
}

main {
    width: 100%;
    max-width: 500px;
    border: solid 1px #000;
    padding: 50px 30px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.login main {
    display: block;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 20px;
    min-width: 410px;
}

h1, h2, h3 {
    font-family: 'hornetmedia', Arial, sans-serif;
}

h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

@media screen and (max-width: 414px) {

    #login-form {
        width: 100%;
        min-width: auto;
    }

    .login main {
        min-width: auto;
    }

    #login-form input {
        width: 100%;
    }
    
}

@media screen and (max-width: 479px) {

    main {
        max-width: auto;
        max-height: auto;
    }
    
}

@media screen and (max-height: 700px) {

    main {
/*
        top: 20px;
        transform: translateY(0);
*/
    }
    
}

@media screen and (max-width: 830px) {

    #hero {
        display: none;
    }
    
}

#hornet-icon {
    width: 180px;
    height: auto;
}

#hornet-icon a {
    margin: 0;
}

#hornet-media {
    margin-bottom: 40px;
    font-size: 16px;
}

p {
    margin-bottom: 20px;
}

.btn {
    border: solid 1px #000;
    border-radius: 20px;
    padding: 10px 20px;
    display: inline-block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-family: 'hornetmedia', Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
}

.btn:hover {
    background-color: #FDB740 !important;
    border-color: #FDB740;
    color: #FFF;
    cursor: pointer;
}

#continue, #continue2, .continue3 {
    margin-top: 20px;
}

.continue3 {
   margin-bottom: 10px; 
}

a.support {
    font-size: 16px;
    margin-top: 15px;
    display: inline-block;
    border-bottom: solid 1px transparent;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

a.support:hover {
    border-bottom: solid 1px #000;
}

label {
    display: block;
}

input {
    width: 80%;
    border: solid 1px #000;
    border-radius: 5px;
    font-size: 16px;
/*    font-family: 'hornetmedia', Arial, sans-serif;*/
    font-family: Arial, sans-serif;
    padding: 5px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    margin-top: 5px;
}

input:focus {
    border-color: transparent;
    border-bottom-color: #000;
    border-radius: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

#submit {
    background-color: #FFF;
}

.msg {
    color: red;
}