@import url('https://fonts.googleapis.com/css2?family=Chivo+Mono:wght@100;200;300;400;500;600;700;800;900&family=Oswald:wght@200;300;400;500;600;700&family=Poppins:wght@200;300;400;500;600;700;800&family=Roboto:wght@100&display=swap');


* {
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  overflow-y: hidden;
  font-family: "Poppins", sans-serif;
}
.container {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(137, 136, 199, 1);
  
}
.form {
  position: absolute;
  height: auto;
  max-width: 620px;
  width: 100%;
  padding: 50px;
  border-radius: 6px;
  background: #fff;
  margin-top: 10rem;
  margin-bottom: 10rem;
  
}
.form.signup {
  border-radius: 10px;
  
}

header {
  font-size: 28px;
  font-weight: 600;
  color: #232836;
  text-align: center;
}

.form .field {
  position: relative;
  height: 50px;
  width: 100%;
  margin-top: 20px;
  border-radius: 6px;
}
.field input,
.field button {
  height: 100%;
  width: 100%;
  border: none;
  font-size: 16px;
  font-weight: 400;
  border-radius: 6px;
}
.field input {
  outline: none;
  padding: 0 15px;
  border: 1px solid rgba(11, 8, 8, 1);;
}
.field input:focus {
  border-bottom-width: 2px;
}
.eye-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #8b8b8b;
  cursor: pointer;
  padding: 5px;
}


.checkbox_field{
  padding-top: 10px;
}

.field button {
  color: #fff;
  background-color: rgba(20, 34, 56, 0.7);
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 600;
}
.field button:hover {
  background-color: rgba(20, 34, 56, 0.952);
}
.form-link {
  text-align: center;
  margin-top: 10px;
}
.form-link span,
.form-link a {
  font-size: 14px;
  font-weight: 400;
  color: #232836;
}
.form a {
  color: #0171d3;
  text-decoration: none;
}
.form-content a:hover {
  text-decoration: underline;
}


.media-options{
    width: 230px;
    margin-left: 140px;

}
.media-options a {
   
  display: flex;
  align-items: center;
  justify-content: center;
}

img.google-img {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}
img.google-img {
  height: 20px;
  width: 20px;
  object-fit: cover;
}
a.google { 
  border: 1px solid rgba(11, 8, 8, 1);
}
a.google span {
  font-weight: 500;
  opacity: 0.6;
  color: #232836;
}
