/* 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", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff9d4dff;
  padding: 30px;
  background-image: url(../icons/background_sol.png);
  background-size: cover;
  background-position: center; 
  background-repeat: no-repeat; 
}

.container {
  position: relative;
  max-width: 850px;
  width: 100%;
  padding: 40px 30px;
  perspective: 2700px;
}

.container .cover {
  position: absolute;
  top: 20;
  left: 50%;
  height: 319px;
  width:45%;
  z-index: 98;
  transition: all 1s ease;
  transform-origin: left;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transform: scale(1.1);
  box-shadow: 0 0 8px 8px rgb(0, 0, 0, 0.20);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.container #flip:checked ~ .cover {
  transform: rotateY(-180deg);
}

.container #flip:checked ~ .forms .login-form {
  pointer-events: none;
}

.container .cover .front,
.container .cover .back {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.cover .back {
  transform: rotateY(180deg);
}

.container .cover img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 10;
  padding: 10px;
  background-size: cover;
  clip-path: polygon(0% 0%, 0% 97%, 100% 68%, 100% 0%);
}

.container .cover .text {
  position: absolute;
  z-index: 10;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: right;
  margin-top: 240px;
  padding-right: 12px;
}

.container .cover .text::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0.5;
}

.cover .text .text-1,.cover .text .text-3 {
  z-index: 20;
  font-size: 10px;
  font-weight: 400;
  color: #0f0f0f;
  text-align: right;
  font-family: 'Montserrat', sans-serif;
}

.cover .text .text-2 {
  z-index: 20;
  font-size: 16px;
  font-weight: 400;
  color: #ff9a2d;
  text-align: right;
  font-family: 'Montserrat', sans-serif;
}

.container .forms {
  height: 330px;
  width: 100%;
  background: #fff;
}

.container .form-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-content .login-form,
.form-content .signup-form {
  width: calc(100% / 2 - 30px);
  padding: 15px;
  transform: scale(1.1);
  box-shadow: 0 0 8px 8px rgb(0, 0, 0, 0.20);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.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: #ff9d4dff;
}

.forms .signup-form .title:before {
  width: 20px;
}

.forms .form-content .input-boxes {
  margin-top: 20px;
}

.forms .form-content .input-boxes .fas {
  padding-left: 10px;
}

.forms .form-content .input-box {
  display: flex;
  align-items: center;
  height: 50px;
  width: 100%;
  margin: 10px 0;
  position: relative;
}

.form-content .input-box input {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  padding: 0 35px;
  font-size: 12px;
  font-weight: 500;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.form-content .input-box input:focus,
.form-content .input-box input:valid {
  border-color: #2196F3;
}

.form-content .input-box i {
  position: absolute;
  color: #ff9d4dff;
  font-size: 17px;
}

.forms .form-content .text {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.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: 20px;
}

.forms .form-content .button input {
  color: #fff;
  background: #2196F3;
  border-radius: 6px;
  padding: 0;
  cursor: pointer;
  transition: all 0.4s ease;
}

/* .forms .form-content .button input:hover {
  background: #5b13b9;
} */

.forms .form-content label {
  color: #5b13b9;
  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;
}

.container #flip {
  display: none;
}

.forms .text a{
  color: orange !important;
  text-decoration: none !important;
}

.container .ctlogo{
  height: 60px;
  width: 210px;
  margin-bottom: 20px;
  margin-left: -20px;
}

@media (max-width: 730px) {
  .container .cover {
    display: none;
  }

  .form-content .login-form,
  .form-content .signup-form {
    width: 100%;
  }

  .form-content .signup-form {
    display: none;
  }

  .container #flip:checked ~ .forms .signup-form {
    display: block;
  }

  .container #flip:checked ~ .forms .login-form {
    display: none;
  }
}
