/* 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 .Containers{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
/*  background: #7d2ae8;*/
  padding: 30px;
  color: red;
}
label.error {
    color: red;
    font-size: 14px;
    width: -1px;
    height: 1px;
    margin-top: 60px;
    margin-left: -417px;
}
.Containers{
  /*margin-left: 180px;
  margin-top: 150px;*/
  position: relative;
  max-width: 1000px;
  width: 100%;
  background: #fff;
  padding: 40px 30px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  perspective: 2700px;
}
.Containers .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;
}
.Containers #flip:checked ~ .cover{
  transform: rotateY(-180deg);
}
 .Containers .cover .front,
 .Containers .cover .back{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.cover .back{
  transform: rotateY(180deg);
  /*backface-visibility: hidden;*/
}
.Containers .cover::before,
.Containers .cover::after{
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background: #621fb9;;
  opacity: 0.5;
  z-index: 12;
}
.Containers .cover::after{
  opacity: 0.3;
  transform: rotateY(180deg);
  /*backface-visibility: hidden;*/
}
.Containers .cover img{
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 10;
}
.Containers .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{
  margin-top: 80px;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.cover .text .text-2{
  margin-left: -18px;
  margin-top: 80px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.cover .text .text-2 i{
  padding: 25px;
}
.contact-details{
  color: white;
}
.Containers .forms{
  height: 100%;
  width: 100%;
  background: #fff;
}
.Containers .form-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-content .login-form,
.form-content .signup-form{
  width: calc(100% / 2 - 25px);
}
.forms .form-content .titles{
  position: relative;
  font-size: 24px;
  font-weight: 500;
  color: #333;
  margin-top: -14px;
}
.forms .form-content .titles:before{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 25px;
  background: #7d2ae8;
}
.forms .signup-form  .titles:before{
  width: 20px;
}
.forms .form-content .input-boxes{
  margin-top: 30px;
}
.forms .form-content .input-box{
  display: flex;
  align-items: center;
  height: 50px;
  width: 100%;
  margin: 33px 0;
  position: relative;
}
.form-content .input-box input{
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  padding: 0 30px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 2px solid rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.form-content .input-box textarea{
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  padding: 0 30px;
  font-size: 16px;
  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: #7d2ae8;
}
.form-content .input-box i{
  position: absolute;
  color: #7d2ae8;
  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 .button{
  color: #fff;
  margin-top: 40px;
}
.forms .form-content .button input{
  color: #fff;
  background: #7d2ae8;
  border-radius: 6px;
  padding: 0;
  cursor: pointer;
  transition: all 0.4s ease;
}
.forms .form-content .button input:hover{
  background: #5b13b9;
}
.forms .form-content label.log-in{
  color: #5b13b9;
  cursor: pointer;
}
.forms .form-content .login-text,
.forms .form-content .sign-up-text{
  text-align: center;
  margin-top: 25px;
}
.Containers #flip{
  display: none;
}
@media (max-width: 730px) {
  .Containers .cover{
    display: none;
  }
  .form-content .login-form,
  .form-content .signup-form{
    width: 100%;
  }
  .form-content .signup-form{
    display: none;
  }
  .Containers #flip:checked ~ .forms .signup-form{
    display: block;
  }
  .Containers #flip:checked ~ .forms .login-form{
    display: none;
  }
}
/*.show{
  margin-left: 347px;
}*/
#error-msg{
  display: none;
}
form#first_form {
    margin-top: -20px;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert-dismissible {
    padding-right: 4rem;
}

.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
.fade {
    transition: opacity .15s linear;
}

.shows {
    margin-left: -4px;
}
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit;
}
button.close {
    cursor: pointer;
    background-color: transparent;
    border: 0;
    appearance: none;
}
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}
