@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
body{
    background-image: #2E5ACE;
    background-image: url(../img/patterns2.svg);
    color: #000;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    align-items: left;
    justify-content: left;
}
/* Reseting */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'inter';
}

.wrapper {
  max-width: 350px;
  min-height: 400px;
  margin: 80px auto;
  padding: 35px 30px 30px 30px;
  background: rgba(255, 255, 255, 0.6);

  border-radius: 15px;
}

.logo {
  width: 100px;
  margin: auto;
}

.logo img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.wrapper .name {
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 1.3px;
  padding-left: 10px;
  color: #000000;
}

.wrapper .form-field input {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  background: none;
  font-size: 1.2rem;
  color: #000000;
  padding: 10px 15px 10px 10px;
  /* border: 1px solid red; */
}

.wrapper .form-field {
  padding-left: 10px;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: inset 1px 1px 2px #000000, inset -1px -1px 2px #000000;
}

.wrapper .form-field .fas {
  color: #ffffff;
}

.wrapper .btn {
  box-shadow: none;
  width: 100%;
  height: 40px;
  background-color: #2E5ACE;
  color: #fff;
  border-radius: 25px;
  box-shadow: 1px 1px 1px #000000,
      -1px -1px 1px #000000;
  letter-spacing: 1.3px;
}

.wrapper .btn:hover {
  background-color: #039BE5;
}

.wrapper a {
  text-decoration: none;
  font-size: 0.8rem;
  color: #033bf4;
}

.wrapper a:hover {
  color: #039BE5;
}
.backk{
    position: absolute;
width: 30px;
height: 21.42px;
left: 43px;
top: 43px;
}

@media(max-width: 380px) {
  .wrapper {
      margin: 30px 20px;
      padding: 40px 15px 15px 15px;
  }
}