/*Root*/
:root {
    --primary-color: #0D8FFF;
    --primary-gray: #F4F5F8;
}

* {
    box-sizing: border-box;
}

.form-body {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
}

.form-side {
    width: 60%;
    height: 100%;
    overflow: hidden;
}

.form-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}


.form-content {
    width: 40%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 150px 10%;
    overflow-y: scroll;
    background-color: white;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* ===== ===== ===== COMMON ===== ====== ======*/
.sub-text {
    font-size: 16px;
    color: #0c0e1a;
}

.form-content .logo {
    display: flex;
    width: 40%;
    margin-bottom: 120px;
}

.form-content .logo img {
    width: 100%;
}

.form-content h2 {
    font-weight: 700;
    margin: 0 0 10px 0;
    font-size: 35px;
}

.form-content p {
    font-size: 14px;
    /*color: var(--primary-gray)*/
}

.form-content form {
    margin-top: 40px;
    width: 100%;
}

.form-content form .group {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-content form .group label {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-content form .group input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #000000;
    padding: 15px 15px 15px 0;
    font-size: 14px;
    background-color: transparent;
}

.form-content form .group input:focus {
    background-color: transparent;
    outline: none;
    border-color: var(--primary-color);
}

.form-content form .forget {
    text-align: center;
    margin: 0 0 50px;
    display: block;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

.form-content form button {
    display: block;
    width: 100%;
    border-radius: 30px;
    text-align: center;
    padding: 15px 20px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 800;
    border: 0;
    margin: 50px 0 20px;
}

.sign-up-text {
    font-weight: 700;
    color: #0c0e1a;
}

.sign-up-text:hover {
    color: var(--primary-color);
    text-decoration: none;
}

@media (max-width: 1345px) {
    .form-content {
        width: 50%;
    }

    .form-side {
        width: 50%;
    }
}


@media (max-width: 810px) {
    .form-content {
        width: 70%;
    }
}

@media (max-width: 550px) {
    .form-content {
        width: 80%;
    }
}

@media (max-width: 940px) {
    .form-side {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .form-body {
        position: relative;
        padding: 30px;
        overflow-y: scroll;
    }

    .form-content {
        position: absolute;
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 10px;
        padding: 30px 40px;
        overflow: unset;
        justify-content: unset;
        height: unset;
        margin-bottom: 30px;
    }

    .form-content .logo {
        margin-bottom: 15px
    }


}