/* Google Font Link */
@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";
}

body {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: rgb(236, 231, 231); */
  background-color: #ff5c05;
  padding: 30px;
}

.container2 {
  position: relative;
  max-width: 700px;
  width: 100%;
  height: 80%;
  background: #fff;
  padding: 40px 30px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  perspective: 2700px;
  border-radius: 5px;
}

.container2 .cover {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 50%;
  z-index: 98;
  transition: all 1s ease;
  transform-origin: left;
  transform-style: preserve-3d;
}

.container2 #flip:checked~.cover {
  transform: rotateY(-180deg);
}

.container2 .cover .front,
.container2 .cover .back {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.cover .back {
  transform: rotateY(180deg);
  backface-visibility: hidden;
}

.container2 .cover::before,
.container2 .cover::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background: #ff5c05;
  opacity: 0.3;
  z-index: 13;
}

.container2 .cover::after {
  opacity: 0.3;
  transform: rotateY(180deg);
  backface-visibility: hidden;
}

.container2 .cover img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 10;
}

.container2 .cover .text {
  position: absolute;
  z-index: 130;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cover .text .text-1,
.cover .text .text-2 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.cover .text .text-2 {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 500;
  font-family: poppins, serif;
}


.container2 .forms {
  height: 100%;
  width: 100%;
  background: #fff;
}

.container2 .form-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text span {
  display: block;
  position: absolute;
  width: 100%;
  left: 100%;
  white-space: nowrap;
  font-size: 2rem;
  animation: slide-in 2s ease-out forwards;
}

text-1 {
  top: 0;
}

.text-2 {
  top: 16rem;
  /* Adjust based on your needs */
  animation-delay: 2s;
}

@keyframes slide-in {
  0% {
    left: 100%;
  }

  100% {
    left: 0;
  }
}

.form-content .login-form,
.form-content .signup-form {
  width: calc(100% / 2 - 25px);
}

.forms .form-content .title {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  color: #333;
}

.forms .form-content .title:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 25px;
  background: #ff5c05;
}

.forms .signup-form .title:before {
  width: 20px;
}

.forms .form-content .input-boxes {
  margin-top: 3px;
}

.forms .form-content .input-box {
  display: inline-block;
  /* align-items: center; */
  height: 50px;
  width: 95%;
  margin: 13px 13px;
  position: relative;

}



.form-content .input-box input {
  height: 100%;
  width: 100%;
  outline: 2px solid #ff5c05;
  border: none;
  padding: 18px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border-radius: 5px;
  margin-top: 10px;
  margin-bottom: 30px;


}

.form-content .input-box input:focus,
.form-content .input-box input:valid {
  border-color: #ff5c05;
}

.form-content .input-box i {
  position: absolute;
  color: #ff5c05;
  font-size: 17px;

}

.forms .form-content .text {
  font-size: 14px;
  font-weight: 500;
  color: black;

}

.forms .form-content .text a {
  text-decoration: none;
}

.forms .form-content .text a:hover {
  text-decoration: underline;
}

.forms .form-content .button {
  color: #fff;
  margin-top: 15px;
}

.forms .form-content .button input {
  color: #fff;
  background: #ff5c05;
  ;
  border-radius: 5px;
  padding: 0;
  cursor: pointer;
  transition: all 0.4s ease;
}

.forms .form-content .button input:hover {
  background: #ff5c05;
}

.forms .form-content label {
  color: #ff5c05;
  cursor: pointer;
}

.forms .form-content label:hover {
  text-decoration: underline;
}

.forms .form-content .login-text,
.forms .form-content .sign-up-text {
  /* text-align: center; */
  margin-top: 25px;
}

.container2 #flip {
  display: none;
}

@media (max-width: 730px) {
  .container2 .cover {
    display: none;
  }

  .form-content .login-form,
  .form-content .signup-form {
    width: 100%;
  }

  .form-content .signup-form {
    display: none;
  }

  .container2 #flip:checked~.forms .signup-form {
    display: block;
  }

  .container2 #flip:checked~.forms .login-form {
    display: none;
  }

}

/* Add this to your CSS file or within a <style> tag in your HTML file */
.alert-danger {
  color: red;
  /* Change text color to red */
  margin-top: 30px;

}


.form-control::placeholder {
  color: #888;
  /* Change the color */
  font-size: 14px;
  /* Change the font size */
  font-style: italic;
  /* Change the font style */
  align
}


/* Style the input login page fields */
.form-control {
  padding: 6px;
  margin-bottom: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: center;
  /* Center-align text, including placeholder */
}

.logo {
  display: flex;
  justify-content: left;
  margin-left: 85px;
  margin-bottom: 15px;
}

.logo img {
  width: 150px;
  height: auto;
}


/* Registration Page */

/* .registration{
  background-color: #ff5c05;
} */

.registration {
  background-image: url('../img/cchubbackground.png'); /* Replace with the path to your image */
  background-size: cover; /* This ensures the image covers the entire element */
  background-position: center; /* This centers the image */
  background-repeat: no-repeat; /* This prevents the image from repeating */
}


.card{
  /* margin-top:5px; */
  margin-bottom:15px;
  padding-top: 15px;
  padding-bottom:15px; 
  padding-left: 15px;
  padding-right: 15px;
}

.container-card{
  margin-top:20px;
  margin-bottom:20px;
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
}

.container {
  position:fixed;
  max-width: auto;
  width: 100%;
  height: 80%;
  background: #ff5c05;
  padding: 30px 30px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  perspective: 2700px;
  border-radius: 5px;
}

.container .form-content {
  display: flex;
  align-items: left;
  justify-content: space-between;
}

.container {
  position: relative;
  max-width: 700px;
  width: 100%;
  height: 80%;
  background: #ff5c05;
  padding: 40px 30px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  perspective: 2700px;
  border-radius: 5px;
}

.container .cover {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 50%;
  z-index: 98;
  transition: all 1s ease;
  transform-origin: left;
  transform-style: preserve-3d;
}

.container #flip:checked~.cover {
  transform: rotateY(-180deg);
}

.container .cover .front,
.container .cover .back {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.cover .back {
  transform: rotateY(180deg);
  backface-visibility: hidden;
}

.container .cover::before,
.container .cover::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background: #ff5c05;
  opacity: 0.3;
  z-index: 13;
}

.container .cover::after {
  opacity: 0.3;
  transform: rotateY(180deg);
  backface-visibility: hidden;
}

.container .cover img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 10;
}

.container .cover .text {
  position: absolute;
  z-index: 130;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.button-register {
  text-align: center; /* This will center-align the button within its container */
  border-radius: 5px;
}

.button-register .btn-primary {
  background-color: #ff5c05; /* Change this to your desired color */
  border-color: #ff5c05; /* Change this to match the background color */
}

/* Optional: Add some padding/margin if needed */
.button-register .btn-primary {
  margin: 10px;
  padding: 10px 20px;
  border-radius: 15px;
  padding-left: 50px;
  padding-right: 50px;
}

/* Hover effect */
.button-register .btn-primary:hover {
  background-color: white; /* Background color on hover */
  border-color: #ff5c05; /* Border color on hover */
  color: black; /* Text color on hover */
}


.text-center{
  color: #3e3c3c;
  padding-top: 15px;
  padding-bottom: 15px;
}

/* Style the input fields */
.form-control {
  padding: 6px;
  margin-bottom: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  /* text-align: center; */
  /* Center-align text, including placeholder */
}

/* General link styling */
.login-link {
  color: #ff5c05; /* Initial color */
  text-decoration: none; /* Remove underline */
}

/* Link hover styling */
.login-link:hover {
  color: #ff5c05; /* Hover color */
  text-decoration: underline; /* Underline on hover */
}


.logo-container {
  text-align: center;
  /* Add any additional styling needed for the container */
}

.cchublogo {
  width: 200px;
  height: auto;
  margin-top: 20px;
  margin-bottom: 5px;
}

/* for the form label on register page */
.custom-label {
  font-size: 0.875rem; /* Adjust the size as needed */
}

.form-control:invalid {
  border: 1px solid;
}

.submitted .form-control:invalid {
  border: 2px solid rgb(185, 53, 53);
}

.form-control:valid {
  border: 2px solid #ff5c05;
}