/* Base Styles */
.signin-page{
  /* Base Styles */
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex
;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f5f5f5;
body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f5f5f5;
}

.password-container {
  position: relative;
  width: 100%;
}

.password-input {
  width: 100%;
  padding: 10px 40px 10px 10px;
  font-size: 16px;
  border: 2px solid black;
  border-radius: 5px;
  outline: none;
  border-width: 5px;
}

.password-input:focus {
  border-color: black; /* Black border when focused */
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5); /* Subtle black glow effect */
  outline: none; /* Remove default outline */
  border-width: 2px;
}

.toggle-password {
  position: absolute;
  top: 15%;
  right: 10px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
}

.toggle-password img {
  width: 20px;
  height: 20px;
}

.container {
  display: flex;
  width: 80%;
  max-width: 900px;
  background: white;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 0; /* Remove margin */
  padding: 0; /* Remove padding if needed */
}

.left-corner-image {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.text-section h1,
.text-section p {
  margin: 0;
}

.text-section p {
  margin-top: 0;
}

.welcome-section {
  background-color: #e60000;
  color: white;
  padding: 70px;
  text-align: left;
}

.welcome-section img {
  margin-top: 20px;
  max-width: 100%;
  height: auto;
}

.form-section {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: auto; /* Allow scrolling if content overflows */
}

.logo {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.tabs {
  display: flex;
  margin-top: 10px;
  margin-bottom: 15px;
}

.tabs button {
  padding: 10px 20px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.tabs .active {
  border-bottom: 2px solid red;
  font-weight: bold;
}

.form {
  width: 100%;
  max-width: 700px;
}

.hidden {
  display: none;
}

.form input {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.btn {
  width: 100%;
  padding: 10px;
  background: red;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

.login-text {
  text-align: center;
  margin-top: 10px;
}

.login-text a {
  color: red;
  text-decoration: none;
}

.radio-group {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.radio-group input[type="radio"] {
  margin: 0;
}

.form-group {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.form-group label {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 550;
  color: #333;
}

.form-group input {
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.otp {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.otp label {
  font-size: 14px;
  font-weight: 550;
  color: #333;
}

.input-button-container {
  display: flex;
  gap: 10px;
  align-items: center;
}

.otp input {
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  flex: 1;
}

.resendbtn {
  margin-bottom: 15px;
  margin-left: 5px;
  border-radius: 30px;
  border-color: #e60000;
  color: #e60000;
  background-color: white;
  height: 40px;
  width: auto;
  padding: 0 10px;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
}

.checkbox {
  display: flex;
  flex-direction: row;
}

.checkbox label {
  font-size: 14px;
  color: #333;
  margin: 0;
  padding-left: 5px;
}

.img {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}

.image-container {
  height: 350px;
  width: 309px;
  overflow: hidden;
}

.carousel-inner img {
  height: 310px;
  width: 309px;
  object-fit: cover;
}
.carousel-item img {
  width: 309px;
  height: 309px;
}

.carousel-indicators {
  margin-top: 100px; /* Adjust the value as needed */
}
.vector {
  margin-top: 80px;
}

/* Responsive Design for Mobile (max-width: 768px) */
@media (max-width: 768px) {
  body {
    padding: 0;
    margin: 0;
  }

  .container {
    flex-direction: column-reverse; /* Display form-section first and welcome-section second */
    width: 90%;
    max-width: 100%;
  }

  .welcome-section {
    padding: 40px;
  }

  .form-section {
    margin-top:350px;
    padding: 20px;
    flex-grow: 1; /* Allow form section to take more space */
    overflow: auto; /* Ensure content doesn't get cut off */
  }

  .logo {
    width: 120px;
  }

  .tabs button {
    font-size: 18px;
  }

  .form {
    width: 100%;
    padding: 10px;
  }

  .form input {
    width: 100%;
    margin-bottom: 10px;
  }

  .btn {
    font-size: 14px;
    padding: 12px;
  }

  .radio-group {
    flex-direction: row;
    gap: 10px;
  }

  .form-group {
    margin-top: 10px;
  }

  .img {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .image-container {
    width: 100%;
    height: auto;
  }

  .carousel-inner img {
    width: 100%;
    height: auto;
  }
}

/* Responsive Design for Very Small Screens (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding: 10px;
  }

  .welcome-section {
    padding: 20px;
  }

  .logo {
    width: 100px;
  }

  .form-section {
    margin-top: 300px;
    padding: 15px;
  }

  .tabs button {
    font-size: 16px;
  }

  .form input {
    padding: 8px;
  }

  .btn {
    font-size: 12px;
    padding: 10px;
  }

  .radio-group {
    flex-direction: row;
    gap: 8px;
  }

  .form-group {
    margin-top: 8px;
  }

  .img {
    flex-direction: column;
    gap: 15px;
  }

  .carousel-inner img {
    width: 100%;
    height: auto;
  }
  .vector{
    margin-bottom: 70px;
  }
}

/* For devices with a max-width of 768px */
@media (max-width: 768px) {
  .checkbox .input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #e60000; /* Ensures the checkbox matches the theme */
  }

  .checkbox label {
    font-size: 12px;
    line-height: 1.2;
  }
}

/* For very small devices with a max-width of 480px */
@media (max-width: 480px) {
  .checkbox .input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #e60000;
  }

  .checkbox label {
    font-size: 10px;
  }
}


/* individual and organization  */

  
}
.signup-page{

  margin: 0;
  font-family: Arial, sans-serif;
  display: flex
;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f5f5f5;
.body{
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f5f5f5;
}

.password-container {
  position: relative;
  width: 100%;
}

.password-input {
  width: 100%;
  padding: 10px 40px 10px 10px;
  font-size: 16px;
  border: 2px solid black;
  border-radius: 5px;
  outline: none;
  border-width: 5px;
}

.password-input:focus {
  border-color: black; /* Black border when focused */
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5); /* Subtle black glow effect */
  outline: none; /* Remove default outline */
  border-width: 2px;
}

.toggle-password {
  position: absolute;
  top: 15%;
  right: 10px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
}

.toggle-password img {
  width: 20px;
  height: 20px;
}
.container{
  display: flex;
  width: 80%;
  max-width: 900px;
  background: white;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 0; /* Remove margin */
  padding: 0; /* Remove padding if needed */
}

.left-corner-image {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.text-section h1,
.text-section p {
  margin: 0;
}

.text-section p {
  margin-top: 0;
}

.welcome-section {
  background-color: #e60000;
  color: white;
  padding: 70px;
  text-align: left;
}

.welcome-section img {
  margin-top: 20px;
  max-width: 100%;
  height: auto;
}

.form-section {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: auto; /* Allow scrolling if content overflows */
}

.logo {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.tabs {
  display: flex;
  margin-top: 10px;
  margin-bottom: 15px;
}

.tabs button {
  padding: 10px 20px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.tabs .active {
  border-bottom: 2px solid red;
  font-weight: bold;
}

.form {
  width: 100%;
  max-width: 700px;
}

.hidden {
  display: none;
}

.form input {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.btn {
  width: 100%;
  padding: 10px;
  background: red;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

.login-text {
  text-align: center;
  margin-top: 10px;
}

.login-text a {
  color: red;
  text-decoration: none;
}

.radio-group {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.radio-group input[type="radio"] {
  margin: 0;
}

.form-group {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.form-group label {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 550;
  color: #333;
}

.form-group input {
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.otp {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.otp label {
  font-size: 14px;
  font-weight: 550;
  color: #333;
}

.input-button-container {
  display: flex;
  gap: 10px;
  align-items: center;
}

.otp input {
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  flex: 1;
}

.resendbtn {
  margin-bottom: 15px;
  margin-left: 5px;
  border-radius: 30px;
  border-color: #e60000;
  color: #e60000;
  background-color: white;
  height: 40px;
  width: auto;
  padding: 0 10px;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
}

.checkbox {
  display: flex;
  flex-direction: row;
}

.checkbox label {
  font-size: 14px;
  color: #333;
  margin: 0;
  padding-left: 5px;
}

.img {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}

.image-container {
  height: 350px;
  width: 309px;
  overflow: hidden;
}

.carousel-inner img {
  height: 310px;
  width: 309px;
  object-fit: cover;
}
.carousel-item img {
  width: 309px;
  height: 309px;
}

.carousel-indicators {
  margin-top: 100px; /* Adjust the value as needed */
}
.vector {
  margin-top: 80px;
}

/* Responsive Design for Mobile (max-width: 768px) */
@media (max-width: 768px) {
  body {
    padding: 0;
    margin: 0;
  }

  .container {
    flex-direction: column-reverse; /* Display form-section first and welcome-section second */
    width: 90%;
    max-width: 100%;
  }

  .welcome-section {
    padding: 40px;
  }

  .form-section {
    margin-top:350px;
    padding: 20px;
    flex-grow: 1; /* Allow form section to take more space */
    overflow: auto; /* Ensure content doesn't get cut off */
  }

  .logo {
    width: 120px;
  }

  .tabs button {
    font-size: 18px;
  }

  .form {
    width: 100%;
    padding: 10px;
  }

  .form input {
    width: 100%;
    margin-bottom: 10px;
  }

  .btn {
    font-size: 14px;
    padding: 12px;
  }

  .radio-group {
    flex-direction: row;
    gap: 10px;
  }

  .form-group {
    margin-top: 10px;
  }

  .img {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .image-container {
    width: 100%;
    height: auto;
  }

  .carousel-inner img {
    width: 100%;
    height: auto;
  }
}

/* Responsive Design for Very Small Screens (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding: 10px;
  }

  .welcome-section {
    padding: 20px;
  }

  .logo {
    width: 100px;
  }

  .form-section {
    margin-top: 470px;
    padding: 15px;
  }

  .tabs button {
    font-size: 16px;
  }

  .form input {
    padding: 8px;
  }

  .btn {
    font-size: 12px;
    padding: 10px;
  }

  .radio-group {
    flex-direction: row;
    gap: 8px;
  }

  .form-group {
    margin-top: 8px;
  }

  .img {
    flex-direction: column;
    gap: 15px;
  }

  .carousel-inner img {
    width: 100%;
    height: auto;
  }
  .vector{
    margin-bottom: 70px;
  }
}

/* For devices with a max-width of 768px */
@media (max-width: 768px) {
  .checkbox .input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #e60000; /* Ensures the checkbox matches the theme */
  }

  .checkbox label {
    font-size: 12px;
    line-height: 1.2;
  }
}

/* For very small devices with a max-width of 480px */
@media (max-width: 480px) {
  .checkbox .input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #e60000;
  }

  .checkbox label {
    font-size: 10px;
  }
}
}

/* individual and organization  */
.individual-page{
  body {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
  }
  .header{
       width: 100%;
      background:url(../images/PCES-top.png) Center top;
      background-repeat:no-repeat;
      background-size:100%;
      min-height: 320px;
  }
  
          .header-logo {
             margin-top:160px;
          }
           .header-logo img{
             margin-left:5px;
          }
  
          .header-title h1 {
              font-size: 24px;
              font-weight: 500;
              line-height: 36px;
              text-align: left;
              color: #333333;
               margin-left:5px;
  
          }
  
          .platform-input {
              display: none;
              /* Hide by default */
              margin-left: 10px;
              width: 200px;
          }
  
          label {
              font-family: Poppins;
              font-size: 16px;
              font-weight: 500;
              line-height: 24px;
              text-align: left;
              text-underline-position: from-font;
              text-decoration-skip-ink: none;
              color: black;
              margin-bottom:8px;
          }
  
          ::placeholder {
              font-family: 'Poppins', sans-serif;
              font-size: 16px;
              font-weight: 400;
              line-height: 24px;
              text-align: left;
              text-underline-position: from-font;
              text-decoration-skip-ink: none;
              color: #898989;
          }
  
          input[type="radio"] {
              appearance: none;
              /* Remove default styling */
              width: 16px;
              height: 16px;
              border: 2px solid #ccc;
              border-radius: 50%;
              outline: none;
              cursor: pointer;
              position: relative;
          }
  
          /* Style for the checked state */
          input[type="radio"]:checked {
              border: 4px solid #DB392A;
              /* Outer border in #DB392A */
              background-color: white;
          }
  
          input[type="checkbox"] {
              appearance: none;
              /* Remove default browser styling */
              width: 14px;
              height: 14px;
              border: 2px solid #ccc;
              border-radius: 2px;
              /* Optional: rounded corners */
              outline: none;
              cursor: pointer;
              position: relative;
              background-color: white;
              /* Default background */
          }
  
          /* Style for the checked state */
          input[type="checkbox"]:checked {
              background-color: #DB392A;
              border-color: #DB392A;
  
          }
  
          input[type="checkbox"]:checked::after {
              content: '✔';
              /* Checkmark symbol */
              color: white;
              font-size: 8px;
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
          }
  
          .form-group {
              margin-bottom: 2rem;
              padding: 0px 20px;
          }
  
          .form-row>[class*=col-] {
              padding-left: 30px !important;
              padding-right: 30px !important;
          }
  
          input[type="radio"]+label {
              font-weight: 200 !important;
              font-size: 14px !important;
          }
  
          input[type="checkbox"]+label {
              font-weight: 200 !important;
              font-size: 14px !important;
          }
  
          .form-check-label {
              margin-bottom: 0;
              margin-left: 10px;
          }
  
          .btn-primary,
          .btn-primary:hover {
              background-color: #DB392A !important;
              color: #FFFFFF !important;
               border-color: #DB392A !important;
               border-radius:10px;
          }
  
          .footer {
              /* position: fixed; */
              bottom: 0;
              left: 0;
              margin-top: 60px;
              width: 100%;
              height: 50px;
              background-color: #DB392A;
              /* Red background color */
  
              display: flex;
              justify-content: flex-end;
              /* Align to the right */
              align-items: center;
              /* Center vertically */
              /* padding-right: 10px;
              box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2); */
          }
  
          .rect-layout {
              width: 174px;
              height: 10px;
              border-radius: 10px 10px 10px 10px;
              background-color: #DB392A;
               margin-left:5px;
          }
  
          form {
              margin-top: 60px !important;
          }
          
          form .form-control{
              border-radius:10px;
              height:50px;
          }
          
      @media (max-width: 768px) {
  .header-logo {
      margin-top: 10px;
  }
  .header{
      min-height: 255px;
  }
      }		
          
}
.organization-page{
  body {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
  }
  .header{
       width: 100%;
      background:url(../images/PCES-top.png) Center top;
      background-repeat:no-repeat;
      background-size:100%;
      min-height: 320px;
  }
  
          .header-logo {
             margin-top:160px;
          }
           .header-logo img{
             margin-left:5px;
          }
  
          .header-title h1 {
              font-size: 24px;
              font-weight: 500;
              line-height: 36px;
              text-align: left;
              color: #333333;
               margin-left:5px;
  
          }
  
          .platform-input {
              display: none;
              /* Hide by default */
              margin-left: 10px;
              width: 200px;
          }
  
          label {
              font-family: Poppins;
              font-size: 16px;
              font-weight: 500;
              line-height: 24px;
              text-align: left;
              text-underline-position: from-font;
              text-decoration-skip-ink: none;
              color: black;
              margin-bottom:8px;
          }
  
          ::placeholder {
              font-family: 'Poppins', sans-serif;
              font-size: 16px;
              font-weight: 400;
              line-height: 24px;
              text-align: left;
              text-underline-position: from-font;
              text-decoration-skip-ink: none;
              color: #898989;
          }
  
          input[type="radio"] {
              appearance: none;
              /* Remove default styling */
              width: 16px;
              height: 16px;
              border: 2px solid #ccc;
              border-radius: 50%;
              outline: none;
              cursor: pointer;
              position: relative;
          }
  
          /* Style for the checked state */
          input[type="radio"]:checked {
              border: 4px solid #DB392A;
              /* Outer border in #DB392A */
              background-color: white;
          }
  
          input[type="checkbox"] {
              appearance: none;
              /* Remove default browser styling */
              width: 14px;
              height: 14px;
              border: 2px solid #ccc;
              border-radius: 2px;
              /* Optional: rounded corners */
              outline: none;
              cursor: pointer;
              position: relative;
              background-color: white;
              /* Default background */
          }
  
          /* Style for the checked state */
          input[type="checkbox"]:checked {
              background-color: #DB392A;
              border-color: #DB392A;
  
          }
  
          input[type="checkbox"]:checked::after {
              content: '✔';
              /* Checkmark symbol */
              color: white;
              font-size: 8px;
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
          }
  
          .form-group {
              margin-bottom: 2rem;
              padding: 0px 20px;
          }
  
          .form-row>[class*=col-] {
              padding-left: 30px !important;
              padding-right: 30px !important;
          }
  
          input[type="radio"]+label {
              font-weight: 200 !important;
              font-size: 14px !important;
          }
  
          input[type="checkbox"]+label {
              font-weight: 200 !important;
              font-size: 14px !important;
          }
  
          .form-check-label {
              margin-bottom: 0;
              margin-left: 10px;
          }
  
          .btn-primary,
          .btn-primary:hover {
              background-color: #DB392A !important;
              color: #FFFFFF !important;
               border-color: #DB392A !important;
               border-radius:10px;
          }
  
          .footer {
              /* position: fixed; */
              bottom: 0;
              left: 0;
              margin-top: 60px;
              width: 100%;
              height: 50px;
              background-color: #DB392A;
              /* Red background color */
  
              display: flex;
              justify-content: flex-end;
              /* Align to the right */
              align-items: center;
              /* Center vertically */
              /* padding-right: 10px;
              box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2); */
          }
  
          .rect-layout {
              width: 174px;
              height: 10px;
              border-radius: 10px 10px 10px 10px;
              background-color: #DB392A;
               margin-left:5px;
          }
  
          form {
              margin-top: 60px !important;
          }
          
          form .form-control{
              border-radius:10px;
              height:50px;
          }
          
      @media (max-width: 768px) {
  .header-logo {
      margin-top: 10px;
  }
  .header{
      min-height: 255px;
  }
      }		
          

}