/* Import Google font - Poppins */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap'); */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.formContainer{
  height: 100vh;
  width: 100%;
  display: flex;
  margin-top: 30px;
  margin-bottom: 30px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  column-gap: 30px;
}
.form{
  position: absolute;
  max-width: 430px;
  border-style: ridge;
  width: 100%;

  padding: 20px;
  border-radius: 6px;
  background: #FFF;
}
.container .registration{
  display: none;
}

.container .form{
  padding: 2rem;
}
legend {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.5rem;
}

.form input, select{
   height: 50px;
   width: 100%;
   padding: 0 15px;
   font-size: 17px;
   margin-bottom: 1.3rem;
   border: 1px solid #ddd;
   border-radius: 6px;
   outline: none;
}

select {
 background-color: white;
 color: #777777;
}

.form input:focus{
   box-shadow: 0 1px 0 rgba(0,0,0,0.2);
}
.form a{
  font-size: 16px;
  color: #2f1664;
  text-decoration: none;
}
.form a:hover{
  text-decoration: underline;
}
.form input.button{
  color: #fff;
  background: #2f1664;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 1.7rem;
  cursor: pointer;
  transition: 0.4s;
}
.form input.button:hover{
  background: #4b23a0;
}
.signup{
  font-size: 17px;
  text-align: center;
}
.signup label{
  color: #2f1664;
  cursor: pointer;
}
.signup label:hover{
  text-decoration: underline;
}

.header-title {
  color: white;
  margin-top: 5px;
  padding-inline-start: 0px;
  display: flex;
  flex-direction: column;
  flex-wrap: no-wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: stretch;
}

.logo {
  width: 40px;  /* Adjust the size of the logo */
  height: 40px; /* Adjust the size of the logo */
  margin-right: 15px; /* Space between the logo and text */
}

.header {
 
  display: flex;
  align-items: center;
  padding: 10px 10px;
  background-color: #2f1664;; /* Light gray background */
  border-bottom: 1px solid#2f1664;; /* Light border at the bottom */
}

.modal {
  display: none;  /* Hidden by default */
  position: fixed; 
  z-index: 1; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4);
  padding-top: 60px;
  
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  border-radius: 10px;
  width: 400px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.btn-group {
  display: flex;
  justify-content: space-between;
}

button {
  font-family: 'Calibri', sans-serif;
  font-size: 0.9rem;
  background-color: rgb(255, 201, 63);
  color: rgb(0, 0, 0);
  border: none;
  padding: 10px 8px;
  margin: 5px;
  width: 80%;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}