/* common css */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0px;
  background: #d7dbd3;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.flexContainer {
  display: flex;
  flex-direction: row;
  width: 70%;
  height: 70%;
  box-shadow: 0px 0px 20px 5px rgb(204 211 189);
  border-radius: 12px;
  overflow: hidden;
}
.flexContent {
  flex: 1;
}
.logoContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}
.loginContainer {
  background-color: #dfebc2;
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#logo {
  width: 40%;
}
.lineInput {
  background: transparent;
  border: none;
  border-bottom: 1px solid #606060;
}

.formButtons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.welcomeText {
  color: #969696;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
}
h2 {
  text-align: center;
  margin-bottom: 0;
}
.formInput {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

/* index.html - login page start */
#loginButton,
#forgetButton {
  background-color: #969696;
  color: white;
  border: none;
  border-radius: 20px;
  text-decoration: none;
  padding: 10px 50px;
  font-weight: bold;
  text-align: center;
}

/* forgetPasswordIndex start */
#loginButton,
#forgetButton {
  cursor: pointer;
  background-color: #969696;
  color: white;
  border: none;
  border-radius: 20px;
  text-decoration: none;
  padding: 2%;
  height: 10%;
  width: 20%;
  font-weight: bold;
  text-align: center;
}
#loginButton {
  margin-right: 3%;
}
#loginButton:hover {
  background-color: #859c50;
}
#forgetButton:hover {
  background-color: #b23b3b;
}
h4 {
  text-align: center;
  color: #969696;
  font-weight: 500;
  font-size: 1.2rem;
}
