
body 
{
  font-family:sans-serif; 
  background-image: url(back1.jpg) ;
  background-size:c;
  color:rgb(19, 17, 17);
  background-repeat: no-repeat;
  overflow-y: hidden; /* Hide vertical scrollbar */
}


.login{
display: grid;
grid-template-columns: 2fr  4fr ;
}
.side{
  margin-left: 5px;
}

.log>img{
  margin-left: 80px;
}
.p1{
  margin-left: 20px;
  color: rgb(0, 0, 0)
  
}
.h1{
    text-align: center;
}


form{
    width:30rem;
    margin-left: 180px;
    color:whitesmoke;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(11, 15, 13, 0.582);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    padding: 20px 25px;
}

input[type=text], input[type=password]{
    width: 100%;
    margin: 10px 0;
    border-radius: 5px;
    padding: 15px 18px;
    box-sizing: border-box;
  }

button {
    background-color: #030804;
    color: white;
    padding: 14px 20px;
    border-radius: 5px;
    margin: 7px 0;
    width: 100%;
    font-size: 18px;
  }

  .mainContainer button a{
    text-decoration: none;
    color: aliceblue;
  }

button:hover {
    opacity: 0.6;
    cursor: pointer;
}

.headingsContainer{
    text-align: center;
}

.headingsContainer p{
    color: orange;
}
.mainContainer{
    padding: 16px;
}

.headingsContainer>button{
  background-color: rgb(2, 2, 68);
  border-radius: 10px;
}

.subcontainer{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.subcontainer a{
    font-size: 16px;
    margin-bottom: 12px;
}

span.forgotpsd a {
    float: right;
    color: whitesmoke;
    padding-top: 16px;
  }

.forgotpsd a{
    color: rgb(74, 146, 235);
  }
  
.forgotpsd a:link{
    text-decoration: none;
  }

  .register{
    color: white;
    text-align: center;
  }
  
  .register a{
    color: rgb(74, 146, 235);
  }
  
  .register a:link{
    text-decoration: none;
  }

  /* Media queries for the responsiveness of the page */
  @media screen and (max-width: 1200px) {
    form{
      width: 25rem;
    }
  }
  
  @media screen and (max-width: 400px) {
    form{
      width: 20rem;
    }
  }
