/* 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;
}

.wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.login-form {
    background: var(--form-bg-color);
    padding: 40px 30px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 10px, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
    /* box-shadow: 0 5px 10px var(--text-color); */
}
.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::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;

    align-items: center;
    justify-content: center;
}

/* .container .form-content{
  height: 100%;
  width: 100%;
  background: #fff; 
  display: flex;
  align-items: center;
  justify-content: space-between;
} */

.form-content .title {
    position: relative;
    font-size: 30px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 10px;
}
.form-content .title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 25px;
    background: var(--form-bg-color-elements);
}

.form-content .input-boxes {
    margin-top: 30px;
}
.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;
    background-color: var(--form-bg-color);
    color: var(--text-color);
}
.form-content .input-box input:focus,
.form-content .input-box input:valid {
    border-color: var(--form-bg-color-elements);
}
.form-content .input-box i {
    position: absolute;
    color: var(--text-color);
    font-size: 20px;
}
.form-content .text {
    font-size: 14px;
    font-weight: 500;
    /* color: #333; */
}
.form-content .text a {
    text-decoration: none;
}
.form-content .text a:hover {
    text-decoration: underline;
}
.form-content .button {
    color: var(--primary-color-light);
    margin-top: 40px;
}
.form-content .button input {
    color: var(--text-color-light);
    background: var(--primary-color);
    border-radius: 6px;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s ease;
}
.form-content .button input:disabled {
    color: #9c9a9a;
    background: #333333;
    border-radius: 6px;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s ease;
}

.form-content .button input:hover:enabled {
    /* background: var(--form-color-light); */
    transition: all 0s ease;
    border: 2px outset var(--body-color);
}
.form-content label {
    color: var(--body-color);
    cursor: pointer;
}
.form-content label:hover {
    text-decoration: underline;
}
.form-content .login-text,
.form-content .sign-up-text {
    text-align: center;
    margin-top: 25px;
}

@media (max-width: 730px) {
    .form-content .login-form,
    .form-content .signup-form {
        width: 100%;
    }
}

.login-title {
    text-align: center;
}
