@import url("./main.css");

.conatainer {
  padding-right: 15px;
  padding-left: 15px;
  width: 90%;
  margin: auto;
}
.grid__two {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 100vh;
}
.grid__two--actions {
  margin: auto;
  max-width: 70%;
  text-align: center;
}
.grid__two--solid {
  background-color: var(--main-background);
  display: flex;
  justify-content: center;
  align-items: center;
}
.action__btn {
  width: 100%;
  padding: 8px;
  background: var(--main-background);
  color: var(--main-color);
  border: none;
  border-radius: 15px;
  font-size: 15px;
}
.grid__two--solid p {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--main-color);
  letter-spacing: var(--letter-space);
}

.input__container input {
  border-radius: 15px;
}

/* --------------- Sign up ---------------------- */
.input__container--text,
.input__container--email {
  background-position: 97% 50%;
  background-repeat: no-repeat;
  background-size: 15px;
}
.input__container--text {
  background-image: url(../images/Icon-Profile.png);
}
.input__container--email {
  background-image: url(../images/Icon-email.png);
}

/* --- media query --- */
@media (max-width: 768px) {
  .grid__two {
    grid-template-columns: unset;
    min-height: unset;
  }
  .grid__two--actions {
    margin-top: 20px;
  }
}
/* ---- email message ----- */
.email__message {
  text-align: center;
  padding: 2rem;
}
.email__message .icon {
  background-color: var(--main-background);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.email__message .icon img {
  max-width: 100%;
  height: auto;
  width: 66%;
}
/* ---- End of email message ----- */
/* --------------- End of Sign up  ------------------- */
/* --------------- sign in  ------------------- */
.main__text {
  color: var(--main-background);
  font-size: 1.3rem;
  margin-bottom: 1.6rem;
}
/* --------------- End of Sign in  ------------------- */
/* --------------- NGO  ---------------------- */
.foundation__profile {
  max-width: 400px;
  width: 400px;
  text-align: center;
  background: #efecec;
  padding: 2rem;
  border-radius: 25px;
  position: relative;
}
.foundation--info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
  margin-top: 1rem;
}
.foundation__profile--content h5 {
  color: var(--main-background);
  font-weight: 600;
  font-size: 1.4rem;
}
.foundation__profile--image {
  position: absolute;
  top: -18%;
  left: 50%;
  transform: translateX(-50%);
  /* border: 9px solid #fffafa;
  border-radius: 50%; */
  /* width: 100%;
  height: 100%; */
}
.foundation__profile--image::before {
  content: "";
  position: absolute;
  top: -8%;
  left: -8%;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  z-index: -1;
  background: #efecec;
}
.oundation__profile--upload {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: auto;
}
.oundation__profile--upload img {
  width: 100%;
  border-radius: 50%;
}

.foundation__profile--preview input {
  display: none;
}
/* --------------- End of NGO  ------------------ */
