/* Importing fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ecf0f3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
}

.wrapper {
  width: 100%;
  max-width: 900px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ecf3ef;
  border-radius: 15px;
  box-shadow: 13px 13px 20px #d1cdcb, -13px -13px 20px #fff;
  padding: 10px;
}

.logo {
  width: 80px;
  margin: 20px auto;
}

.logo img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0px 0px 3px #5f5f5f,
      0px 0px 0px 5px #ecf0f3,
      8px 8px 15px #a7aaa7,
      -8px -8px 15px #fff;
}

.wrapper .name {
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 1.3px;
  padding-left: 10px;
  color: #555;
}

.form-field input {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  background: none;
  font-size: 1rem;
  margin-left: 10px;
}

.form-field {
  margin-top: 20px;
  margin-bottom: 30px;
  border-radius: 25px;
  background-color: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 3px #5f5f5f,
      0px 0px 0px 5px #ecf0f3,
      8px 8px 15px #a7aaa7,
      -8px -8px 15px #fff;
}

.form-field span {
  font-size: 1.2rem;
  color: #555;
}

.btn {
  width: 100%;
  border: none;
  outline: none;
  background-color: #1da1f2;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin-top: 20px;
}

.btn:hover {
  background-color: #0c8de4;
}

.fs-6 {
  margin-top: 20px;
  color: #555;
}

.fs-6 a {
  color: #1da1f2;
  text-decoration: none;
  margin: 0 5px;
}

.fs-6 a:hover {
  text-decoration: underline;
}

/* Media Query for iPhones */
@media only screen and (max-width: 600px) {
  .logo {
      width: 320px;
  }

  .form-field input {
      font-size: 1.2rem;
  }
  .form-field input {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    background: none;
    font-size: 100%;
    margin-left: 10px;
  }
  
  .form-field {
    margin-top: 20px;
    margin-bottom: 30px;
    border-radius: 25px;
    background-color: #fff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 3px #5f5f5f,
        0px 0px 0px 5px #ecf0f3,
        8px 8px 15px #a7aaa7,
        -8px -8px 15px #fff;
  }
  
  .form-field span {
    font-size: 1.2rem;
    color: #555;
  }

}