@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');


body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background-image: url('../img/gradient.jpeg')!important;
    background-repeat: no-repeat;
    background-size: cover;
}

::selection {
  color: #015f8a;
  background: #f8cc00;
}

.box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30rem;
    background-color: #fff;
    padding: 3.5rem;
    box-sizing: border-box;
    border: 1px solid #dadce0;
    /* box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px; */
    box-shadow: rgba(240, 156, 46, 0.4) -5px 5px, rgba(240, 156, 46, 0.3) -10px 10px, rgba(240, 156, 46, 0.2) -15px 15px, rgba(240, 156, 46, 0.1) -20px 20px, rgba(240, 46, 170, 0.05) -25px 25px;
}

.box h2 {
    margin: 0px 0 -0.125rem;
    padding: 0;
    text-align: center;
    color: #202124;
    font-size: 24px;
    font-weight: 400;
}

.box .logo 
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 16px;

}

.box .logo img{
    
    width: 25%;
    height: 25%;

}

.box p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.5;
    margin-bottom: 24px;
    text-align: center;
}

.box .inputBox {
    position: relative;
}

.box .inputBox input {
    width: 93%;
    padding: 10px 10px;
    font-size: 1rem;
   letter-spacing: 0.062rem;
   margin-bottom: 1.875rem;
   border: 1px solid #ccc;
   background: transparent;
   border-radius: 4px;
}

.box .inputBox label {
    position: absolute;
    top: 0;
    left: 10px;
    padding: 0.625rem 0;
    font-size: 1rem;
    color: gray;
    pointer-events: none;
    transition: 0.5s;
}

.box .inputBox input:focus ~ label,
.box .inputBox input:valid ~ label,
.box .inputBox input:not([value=""]) ~ label {
    top: -1.125rem;
    left: 10px;
    color: #ffbb00;
    font-size: 0.75rem;
    background-color: #fff;
    height: 10px;
    padding-left: 5px;
    padding-right: 5px;
}

.box .inputBox input:focus {
    outline: none;
    border: 2px solid #ffbb00;
}

.box input[type="submit"] {
    border: none;
    outline: none;
    color: #fff;
    background-color: #ffbb00;
    padding: 0.625rem 1.25rem;
    cursor: pointer;
    border-radius: 0.312rem;
    font-size: 1rem;
    width: 100%;
  }

  .box input[type="submit"]:hover {
    background-color: #ffae00;
    box-shadow: 0 1px 1px 0 rgba(244, 202, 66, 0.45), 0 1px 3px 1px rgba(244, 202, 66, 0.3);
  }

  .box a{text-decoration: none; transition: 0.2s; font-weight: bold; color: #000;}
  .box a:hover{transition: 0.2s; color: #ffae00;}

#resolutionmodal {
  width: 40%;
  min-height: 1vh;
  background-color: rgba(189, 33, 33, 0.651);
  border: 1px solid #e01111d7;
  border-radius: 5px;
  display: none;
  justify-content: center;
  color: rgb(255, 255, 255);
  position: absolute;
  top: 5%;
  right: 3%;
  text-align: center;
  font-size: 11px;
  font-family: Calibri;
  padding: 10px;
}

#webbrowsermodal {
  width: 40%;
  min-height: 1vh;
  background-color: rgba(189, 33, 33, 0.651);
  border: 1px solid #e01111d7;
  border-radius: 5px;
  display: none;
  justify-content: center;
  color: rgb(255, 255, 255);
  position: absolute;
  top: 5%;
  right: 3%;
  text-align: center;
  font-size: 11px;
  font-family: Calibri;
  padding: 10px;
}
