* {
  box-sizing: border-box;
}
:root {
  --main-padding: 100px;
  --main-color: rgb(0, 131, 143);
}
body {
  margin: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  font-family: "lato", sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}
body::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    width: 50%;
    height: 100%;
    background-color: #00bcd4;
}
body::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0px;
    width: 50%;
    height: 100%;
    background-color: #3f51b5e6;
}
form{
    width: 429px;
    box-shadow: 0px 0px 12px 0px;
    height: 545px;
    padding: 10px 31px;
    z-index: 1;

}
form h2{
    text-align: center;
    text-transform: capitalize;
    color: white;
    font-size: 35px;
}
form .email,
form .password{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 44px;
}
form .email label,
form .password label{
        text-transform: capitalize;
    color: white;
    font-size: 20px;
}
form .email input[type="email"],
form .password input[type="password"]
{
        width:300px;
    padding: 11px 35px;
    border: 1px solid;
    border-radius: 5px;
    
}
form input:focus{
    outline: none;
}
/* this syntax is true for backend */
/* form input[type="submit"]{
    display: block;
    margin: 15px auto;
    padding: 13px 25px;
    text-transform: capitalize;
    font-size: 23px;
    border: none;
    background-color: #ffffff3d;
    color: white;
    font-weight: bold;
    width: 260px;
    cursor: pointer;
} */
form .sign{
    display: block;
    margin: 15px auto;
    padding: 13px 25px;
    text-transform: capitalize;
    font-size: 23px;
    border: none;
    background-color: #ffffff3d;
    color: white;
    font-weight: bold;
    width: 260px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}
form .links{
    display: flex;
    justify-content: space-between;
    margin: 45px auto;

}
form .links a{
        text-decoration: none;
    color: white;
    border: 1px solid;
    padding: 10px 12px;
    border-radius: 5px;
    background: #2d85afbf;
}
@media (max-width:991px) {
    form{
    width: 348px;
    }
    
}
