/*
  Sign in & Sign up Template
  Author: Ciuca Cristian (Criatix)
  Author URL: https://www.ciucacristi.tk/
  Framework: Bootstrap v5.0
  Version: v2.0
  Demo: https://ciucacristi.tk/signin
*/

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

a:link {
  /* Edit Links */
  text-decoration: none;
}

/* Sign In Left Menu */

/* Left Panel with Sign In */
.leftPanel {
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  text-align: center;
  padding: 2rem;
  height: 100vh;
}

/* Login Icon */
.menuIcon {
  margin-top: 5rem;
  background-image: linear-gradient(to left, #5046ff, #399bfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Page Main Title */
.pageTitle {
  font-family: "Poppins Light", sans-serif;
  font-size: 2.5rem;
  margin-top: 2rem;
  color: #41465c;
}

/* Inputs with label */
.labelInput {
  font-family: "Poppins", sans-serif;
  width: 80%;
  height: auto;
  margin: 0 auto;
  position: relative;
}

/* Input */
.labelInput input {
  height: 2.5rem;
  width: 100%;
  margin-top: 3rem;
  border: none;
  border-radius: 0px;
  border-bottom: 1px solid #41465c;
}

/* Inputs */
.labelInput input:focus,
.labelInput input:valid {
  border-bottom: 2px solid #0072ff;
}

/* Input Text */
.labelInput label {
  color: #303030;
  font-size: 0.9rem;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 5px;
  transition: 0.2s;
}

/* Input Text */
.labelInput input:focus ~ label,
.labelInput input:valid ~ label {
  top: -25px;
  left: 0;
  font-weight: 500;
  color: #0072ff;
}

/* Remove outline from all elements */
*:focus {
  outline: none !important;
}

/* Remove outline from inputs */
.form-control:focus {
  outline: none;
  box-shadow: none !important;
}

/* Checkbox */

/* Checkbox container */
.form-check {
  margin-left: 2.5rem;
  margin-top: 2rem;
}

/* Checkbox settings */
input[type="checkbox"] {
  display: none;
}

/* Checkbox settings */
input[type="checkbox"] + label {
  display: block;
  font-family: "Poppins", sans-serif;
  position: absolute;
  padding-left: 35px;
  color: #666565;
  cursor: pointer;
  font-size: 0.85rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Checkbox settings */
input[type="checkbox"] + label:last-child {
  margin-bottom: 0;
}

/* Checkbox settings */
input[type="checkbox"] + label:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #303030;
  border-radius: 0.2rem;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
  -webkit-transition: all 0.12s, border-color 0.08s;
  transition: all 0.12s, border-color 0.08s;
}

/* Checkbox settings */
input[type="checkbox"]:checked + label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border: 1px solid #1d7eff;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* End Checkbox */

/* Buttons */

/* Blue Gradient Button */
.btnGradientBlue {
  background-image: linear-gradient(to right, #5046ff, #5cacfc);
  box-shadow: 0px 15px 20px -10px #4460ef;
  padding: 0.9rem 2rem 0.9rem 2rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-family: "Poppins", sans-serif;
  margin-right: 1rem;
  outline: none;
  border: none;
  color: #fff;
  transition: 0.2s;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

/* Blue Gradient Button Hover */
.btnGradientBlue:hover {
  box-shadow: none;
}

/* Light Gradient Button */
.btnGradientLight {
  background-image: linear-gradient(to right, #e4e4e4, #f5f6f8);
  box-shadow: 0px 5px 15px -5px #ccc;
  padding: 0.9rem 2rem 0.9rem 2rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-family: "Poppins", sans-serif;
  margin-right: 1rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  outline: none;
  border: none;
  color: #000;
  transition: 0.2s;
}

/* Blue Outline Button */
.btnOutlineBlue {
  background-color: transparent;
  padding: 0.9rem 2rem 0.9rem 2rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-family: "Poppins", sans-serif;
  margin: 1rem;
  color: #fff;
  outline: none;
  border: 1px solid #5cacfc;
  transition: 0.2s;
}

/* Light Button Hover Effect */
.btnGradientLight:hover {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1),
    0px 5px 20px 0px rgba(0, 0, 0, 0.03);
}
/* End Buttons */

/* Links from .leftPanel container */
.leftPanel .links {
  font-size: 0.9rem;
}

/* Forgot Password Modal */

/* Modal Body */
.modal-body {
  padding: 3rem;
}

/* Modal Title */
.modal-title {
  text-align: center;
  font-size: 1.4rem;
  font-family: "Poppins SemiBold", sans-serif;
}

/* Modal Icon */
.modal-icon {
  text-align: center !important;
  margin-top: 1.2rem;
  font-size: 2.5rem;
  color: #2389f2;
}

/* Modal Description Text */
.modal-description {
  font-size: 0.8rem;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

/* End Forgot Password Modal */

/* End Sign In Left Menu */

/* Right Panel */

/* Right Panel With Background */
.rightPanel {
  background-image: linear-gradient(to left, #5046ff, #3a98f7);
  height: 100vh;
  text-align: center;
  padding: 2rem;
}

/* OwlCarousel from Right Panel */
.rightPanel .owl-theme {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* Right panel Title*/
.rightPanel-title {
  color: #fff;
  font-size: 2.5rem;
  font-family: "Poppins ExtraBold", sans-serif;
}

/* Right Container Title*/
.description {
  color: #fff;
  font-size: 0.9rem;
  font-family: "Poppins", sans-serif;
}

/* Responsive Media Queries*/
@media screen and (max-height: 730px) {
  .leftPanel {
    height: 60rem !important;
  }

  .rightPanel {
    height: 60rem !important;
  }
}

/* End Right Panel */
