/* @extend display-flex; */
display-flex, .display-flex, .display-flex-center {
  display: flex;
  display: -webkit-flex; }

.clear {
  clear: both;
}

body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Ensures scrolling starts at the top */
  align-items: center;
  min-height: 100vh;
  background-color: #f4f4f4;
  margin: 0;
  text-align: center;
  overflow-y: auto; /* Enables scrolling */
}

.container {
  display: flex;
  min-height: 832px;
  width: 100%;
  flex-direction: column;
  align-items: center; /* Centers everything inside */
  justify-content: center;
}


.display-flex {
  justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -ms-align-items: center; }

.display-flex-center {
  justify-content: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -ms-align-items: center; }

.position-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%); }

.signup-content {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  padding: 35px;
  max-width: 500px;
  width: 100%;

}


.toggle-buttons {
  display: flex;
  background: #f4f4f4;
  padding: 5px;
  border-radius: 15px;
  margin-bottom: 20px;
  justify-content: space-between;
}

.toggle-buttons button {
  flex: 1;
  padding: 10px;
  border: none;
  cursor: pointer;
  background: transparent;
  font-weight: bold;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 16px;
}
.toggle-buttons .active {
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.login-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-form p {
  margin-bottom: 10px; /* Adjust this value for more or less space */
}

.expiry-notice {
  margin-top: 0; /* Ensure no extra space above the expiry box */
}

.scan-text {
  margin-bottom: 15px; /* Adjust spacing */
}

.login-subtitle {
  color: rgb(82, 91, 117);
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
}

.form-group {
  overflow: visible;  /* Change from 'hidden' to 'visible' */
  margin-bottom: 20px; /* Adds spacing between input fields */
  width: 100%;  /* Ensures the form group takes full width */
}

.form-group input {
  width: 100%;  /* Ensures input fills the container */
  padding: 10px;  /* Adds some padding for better appearance */
  font-size: 16px; /* Adjusts text size */
  border: 1px solid #ccc; /* Adds a border */
  border-radius: 5px; /* Rounds corners */
}


.hidden {
  display: none;
}
label {
  display: block;
  text-align: left;
  margin-top: 10px;
  font-weight: bold;
  width: 100%;
}
input[type="text"], input[type="password"] {
  width: calc(100% - 20px);
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  text-align: left;
}

input:focus {
  border-color: #4A90E2; /* Blue border when clicked */
  box-shadow: 0 0 5px rgba(74, 144, 226, 0.75); /* Glowing effect */
}

@media screen and (max-width: 768px) {
  .container {
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .signup-content {
    padding: 20px;
    max-width: 100%;
  }
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3px;
  font-size: 14px;
  width: 100%;
}

.remember-me input {
  vertical-align: middle; /* Align checkbox properly */
  margin-right: 5px; /* Adjust spacing */
}
.forgot-password {
  white-space: nowrap; /* Prevents text from wrapping */
  text-decoration: none;
  color: blue; /* Adjust color as needed */
  font-weight: bold;
}

.forgot-password:hover {
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  padding: 10px;
  background-color: #007bff; /* Default blue color */
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s ease; /* Smooth color transition */
}

.login-btn:hover {
  background-color: #064fa1; /* Darker blue on hover */
}


.qr-box {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.qr-code {
  width: 180px;
}


.expiry-notice {
  border-radius: 6px;
  background-color: #808080;
  border: 1px solid rgba(203, 208, 221, 1);
  margin-top: 10px;
  margin-bottom: 15px; /* Adjust the value as needed */
  width: calc(100% - 15px); /* Adjust width to align with elements above */
  max-width: 100%;
  padding: 3px 8px;
  font-family: Roboto, -apple-system, Roboto, Helvetica, sans-serif;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  align-self: center;
}

.expiry-text {
  margin-top: 5px;
  font-size: 16px;
  font-weight: 400;
  color: white; /* Change text color for better visibility */

}

.expiry-timer {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 5.12px;
  margin-top: 10px;
  color: white; /* Change text color for better visibility */
}


.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  position: relative;
}

.logo img {
  max-width: 140px; /* Adjust if necessary */
  height: auto;
  display: block;
}

h1 {
  margin-top: -10px; /* Adjust this value to move it up */
  position: relative;
}

.title {
  margin-top: 10px; /* Adjust this value to move it up */
  margin-bottom: 10px;
  font-size: 25px;
  position: relative;
}

.title2 {
  margin-top: -10px; /* Adjust this value to move it up */
  font-size: 20px;
  position: relative;
}
.loginhere {
  color: #555;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 5px;
}

.loginhere-link {
  font-weight: 700;
  color: #222;
}

.footer {
  text-align: center;
  font-size: 13px; /* Make text smaller */
  color: #666; /* Subtle color */
  margin-top: -10px; /* Adjust this value to move it up */
}





/*# sourceMappingURL=style.css.map */
