



/*I USE THIS FOR BOTH LOGIN AND SIGN UP PAGE TO MANTAIN DESIGN CONSISTENCY*/




/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.container {
  position: relative;
  max-width: 370px;
  width: 100%;
  padding: 25px;
  border-radius: 8px;
  background-color: #fff;
}

/*this is for the radbudd icon*/
.radbuddIcon{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.container header {
  font-size: 30px;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: center;
}
.container form {
  margin-top: 30px;
}
form .field {
  margin-bottom: 20px;
}
form .input-field {
  position: relative;
  height: 55px;
  width: 100%;
}

#member {
  font-size: 12px;
  text-decoration: underline;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #333;
  display: flex;
  justify-content: center;
}
#member a {
  color: inherit;  /* this is to remove the blue colour from the hyperlink */
   
}

.input-field input {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  border-radius: 8px;
  padding: 0 15px;
  border: 1px solid #d1d1d1;
}
.invalid input {
  border-color: #d93025;
}
.input-field .show-hide {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #919191;
  cursor: pointer;
  padding: 3px;
}
.field .error {
  display: flex;
  align-items: center;
  margin-top: 6px;
  color: #d93025;
  font-size: 13px;
  display: none;
}
.invalid .error {
  display: flex;
}
.error .error-icon {
  margin-right: 6px;
  font-size: 15px;
}
.create-password .error {
  align-items: flex-start;
}
.create-password .error-icon {
  margin-top: 4px;
}

/*this is for the button*/
.button {
  margin: 25px 0 6px;
}
.button input {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  background-color: #29CC57;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button input:hover {
  background-color: #239944;
}
.error {
  display: none;
  color: red;
  align-items: center;
  margin-top: 5px;
}

/*this is for the forgot password*/
.forgot_password a {
  text-decoration: underline;
  color: #333;
  font-size: 12px;
  margin-top: 20px;
}

input:focus{
  outline: none;
  border: 2px solid;
  border-color: #4070f4;
  
}


/*error display for log in*/
.error_message{
  margin-top: 6px;
  color: #d93025;
  font-size: 13px;
}