/* 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: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at left, #003883 0%, #EE7D11 100%);
    padding: 30px;
}


.logo {
    position: relative;
    padding:   0px 10px 0px 30px;
}

.contsessexp {
    position: relative;
    max-width: 400px;
    width: 100%;
    background: #fff;
    padding: 40px 30px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    perspective: 2700px;
}

.container {
    margin-top: -20px;
    position: relative;
    max-width: 850px;
    width: 100%;
    background: #fff;
    padding: 40px 30px;
    box-shadow: 5px 10px 100px rgba(0,0,0,0.8);
    perspective: 2700px;
    border-radius: 10px !important;
}
    .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;
        border-radius: 10px;
        overflow: hidden;
    }
    .container #flip:checked ~ .cover {
        transform: rotateY(-180deg);        
    }
    .container .cover .front,
    .container .cover .back {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        backface-visibility: hidden;
        
    }
.container .cover .back{
  transform: rotateY(180deg);
  backface-visibility: hidden;
}
.container .cover::before,
.container .cover::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #fff;
    opacity: 0.5;
    z-index: 12;
}
.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;
        top: 0px;
        left: 0px;        
    }
    .container .cover .text {
        position: absolute;
        z-index: 130;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        top: 200px;        
    }
.cover .text .text-1,
.cover .text .text-2{
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  text-align: center;
}
.cover .text .text-2{
  font-size: 18px;
  font-weight: 600;
}
.container .forms{
  height: 100%;
  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 - 25px);
}
.forms .form-content .title{
  position: relative;
  font-size: 24px;
  font-weight: 500;
  color: #333;
}
    .forms .form-content .title:before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        height: 3px;
        width: 25px;
        background: #EE7D11;
    }
.forms .signup-form  .title: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: 10px 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 input:focus,
    .form-content .input-box input:valid {
        border-color: rgba(0,0,0,0.2);
    }
.form-content .input-box i {
    position: absolute;
    color: #003883;    
    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: 15px;
}
    .forms .form-content .button input {
        color: #fff;
        background: #003883;
        border-radius: 6px;
        padding: 0;
        cursor: pointer;
        transition: all 0.4s ease;
    }
        .forms .form-content .button input:hover {
            background: #EE7D11;
        }
.forms .form-content label {
    color: #003883;
    cursor: pointer;
}
    .forms .form-content label:hover {
        text-decoration: underline;
        color: #EE7D11;
    }
.forms .form-content .login-text,
.forms .form-content .sign-up-text{
  text-align: center;
  margin-top: 25px;
}
.container #flip{
  display: none;
}
@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;
  }
}


.forms .form-content .drop-down {
    display: flex;
    align-items: center;
    height: 50px;
    width: 100%;
    margin: 10px 0;
    position: relative;
}

.form-content .drop-down select {
    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 .drop-down select:focus,
    .form-content .drop-down:valid {
        border-color: rgba(0,0,0,0.2);
    }

.form-content .drop-down i {
    position: absolute;
    color: #003883;
    font-size: 17px;
}


.forms .form-content .check-box {
    display: flex;
    align-items: center;
    height: 50px;
    width: 100%;
    margin: 10px 0;
    position: relative;
}

.form-content .check-box span {
    height: 100%;
    width: 94%;
    align-content: center;
    outline: none;
    border: none;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 2px solid rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.form-content .check-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 .check-box input:focus,
    .form-content .check-box:valid {
        border-color: rgba(0,0,0,0.2);
    }

.form-content .check-box i {
    position: absolute;
    color: #EE7D11;
    font-size: 17px;
}

.powered-by {
    position: fixed;
    bottom: 18px;
    left: 14px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.8);
    padding: 8px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
    border: 1px solid #000;
}

    .powered-by a {
        color: #003883;
        text-decoration: none;
        font-size: 13px;
        font-family: Arial, sans-serif;
        font-weight: bold;
    }

    .powered-by img {
        display: block;
        margin: 0 auto;
        border-radius: 6px;
    }