/* common css */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
body {
  font-family: "Roboto", sans-serif;
  background-color: #d7dbd3;
  margin: 0;
  padding: 0;
  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;
}
h2 {
  text-align: center;
  /* margin-top: 22%; */
  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;
  /* height: 10%; */
  /* width: 34%; Adjust the width to your desired value */
  font-weight: bold;
  /* margin-top: 10px; Add some spacing between the buttons */
  text-align: center;
}
/* #loginButton {
          margin-right: 3%;
      } */
/* index.html - login page end */

/* 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%; /* Adjust the width to your desired value */
  font-weight: bold;
  /* margin-top: 10px; Add some spacing between the buttons */
  text-align: center;
}
#loginButton {
  margin-right: 3%; /* Add some spacing between the buttons */
}
#loginButton:hover {
  background-color: #859c50;
}
#forgetButton:hover {
  background-color: #b23b3b;
}
h4 {
  font-style: italic;
  text-align: center;
  color: #969696;
}
/* forgetPasswordIndex end */
