

.login{
  display: flex;
    justify-content: center;
}
.logincontainer{
  border: 2px solid hidden;
  width: 70vw;
   box-shadow: 0px 5px 10px 10px  #193e7159;
   margin-top: 10%;
    display: flex;
  justify-content: center;
  align-items: center;
}

.logologin{
  border: 2px solid hidden;
  width: 35vw;
  height: 70vh;
  background-color: rgba(255, 255, 255, 0.562);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.logologin img{
  width: 40%;
  border-radius: 50%;
}
.logologin a{
  text-decoration: none;
  font-family: Arial;
  color: black;
  text-transform: uppercase;
}
.inputlogin{
  width: 35vw;
  height: 70vh;
  background-color: rgb(255, 255, 255);
}
.inputlogin h2{
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.377);
    display: flex;
  justify-content: center;
  align-items: center;
}
form{
  margin: 5%;
}
form label{
    text-transform: uppercase;
  color: goldenrod;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 600;
  line-height: 2.5;
}
form input[type="text"]{
  width: 80%;
  padding: 10px;
  border: 1px solid;
  border-left: none;
  border-radius: 10px 10px;
}
form input[placeholder]{
  color: #193e71;
  text-transform: capitalize;
  font-weight: 600;
}
form input[type="password"]{
  width: 80%;
  padding: 10px;
  border: 1px solid;
  border-right: none;
  border-radius: 10px 10px;
}
form input:focus{
    border: 1.5px solid goldenrod;
    outline: none;
    background: #fff;
    border-radius: 10px;
}
form button{
    background-color: steelblue;
    width: 90%;
    border: none;
    border-radius: 10px 10px;
    margin-top: 100px;
    padding: 10px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
}
@media (max-width: 768px) {

.logincontainer{
  flex-direction: column-reverse;
  width: 100vw;
}
.logologin{
  width: 90vw;
}
.inputlogin{
  width: 85vw;
}
}