@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');

body{
       overflow-x: hidden;
}
.wrapper {
       display: flex;
       max-width: 1360px;
       margin:  auto;   
       position: relative; 
       margin-top: 2%;
       align-content: flex-start;
}

.img-res{
       width: 90%;
       display: block;
       margin: auto;
}

.danger{
       color:  red;
}

.good{
       color:  white;
}

.contact {
       font-family: Lato;
       font-weight: bold;
       font-size: 20px;
       line-height: 24px;
       color: #318B89;  
       margin: 20px;
       text-align: center;
}

.login-container {
       background: #318B89;
       box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
       border-radius: 90px;
       margin-top: 20px;
       padding-top: 10vh;
       padding-bottom: 40px;
       text-align: center;
       height: 95%;
       width: 80%;
}

.login-container h1 {
       font-family: Lato;
       font-weight: normal;
       font-size: 48px;
       line-height: 58px;
       text-align: center;
       color: #FFFFFF;
}

.login-container p, .login-container small{
       font-family: Lato;
       font-style: normal;
       font-weight: normal;
       font-size: 22px;
       line-height: 30px;
       text-align: center;
       color: #FFFFFF;
       margin: 20px;
}

.login-container a, .login-container small{
       color: #FFFFFF;
       align-items: center;
       text-decoration: none;
       
}

.login-container a:hover{
       text-decoration: underline;
}

.login-form hr{
       height: 0px;
       border: 1px solid #FFFFFF;
}

.form-fields input{
       background: #FFFFFF;
       border: 2px solid #FFFFFF;
       box-sizing: border-box;
       border-radius: 31px;
       font-family: Lato;
       font-style: normal;
       font-weight: bold;
       font-size: 24px;
       line-height: 29px;
       color: #318B89;
       margin: 20px;
       height: 50px;
}

.user-pass input{
       padding-left: 20px;
       width: 90%;
       max-width: 400px;
}

.login-btn input{
       width: 150px;
       margin: auto;
       margin-top: 50px;
       text-align: center;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
       .login-container {
              border-radius: 0px;
              height: 100%;
              width: 100%;
       }
     }
     
     /* Small devices (portrait tablets and large phones, 600px and up) */
     @media only screen and (min-width: 600px) {
       .login-container {
              border-radius: 0px;
              height: 100%;
              width: 100%;
       }
     }
     
     /* Medium devices (landscape tablets, 768px and up) */
     @media only screen and (min-width: 768px) {
       .login-container {
              border-radius: 0px;
              height: 100%;
              width: 100%;
       }
     } 
     
     /* Large devices (laptops/desktops, 992px and up) */
     @media only screen and (min-width: 992px) {
       .login-container {
              border-radius: 90px;
              height: 95%;
              width: 80%;
       }
     } 
     
     /* Extra large devices (large laptops and desktops, 1200px and up) */
     @media only screen and (min-width: 1200px) {
        .login-container {
              border-radius: 90px;
              height: 95%;
              width: 80%;
       }
     }