@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&amp;family=Rajdhani:wght@300;400;500;600;700&amp;family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&amp;display=swap');



/* variables */
:root {
    --primary-color: rgb(0, 143, 156);
    --secondary-color: rgb(247, 144, 49);
    --field-text-color: rgb(62, 63, 94);
    --bg-color: rgb(255,255,255);
    --heading-color: rgb(255,255,255);
    --text-color: rgb(48, 47, 69);
    --label-color: rgb(175, 176, 192);
    --border-color: rgb(222, 222, 234);
}

body {
    font-family: 'Rajdhani', sans-serif;
    width: 100%;
    position: relative;
    min-height: 100vh;
}

main {
    position: relative;
    z-index: 10000;
    min-height: 100vh;
}

    main::after {
        content: "";
        position: absolute;
        height: 100%;
        top: 0;
        right: -15%;
        width: 200%;
        z-index: -1;
        clip-path: circle(70% at 80% 50%);
        background-image: url(../images/Layers.png);
    }

.wrapper {
    padding: 40px;
    width: 85%;
    height: auto;
}

.main-inner {
    position: relative;
    height: 100%;
}


.logo {
    display: flex;
    align-items: center;
    height: auto;
    position: relative;
    z-index: 10;
}

.logo-icon {
    width: auto;
}

    .logo-icon img {
        position: absolute;
        left: 15px;
        top: 20px;
        filter: drop-shadow(2px 4px 1px black);
    }

.logo-text {
    font-size: 37px;
    color: var(--heading-color);
    font-weight: bold;
    margin-left: 8px;
}

.p-relate {
    position: relative;
    height: 100%;
}


.main-heading {
    font-size: 90px;
    font-family: "Titillium Web";
    color: var(--heading-color);
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1;
}


.form {
    border-radius: 12px;
    background-color: var(--bg-color);
    box-shadow: 0px 0px 60px 0px rgba(94, 92, 154, 0.12);
    margin-left: auto;
    min-height: 500px;
    padding: 65px;
    width: 65%;
    position: relative;
    z-index: 100000;
}

.form-title {
    font-size: 26px;
    color: var(--text-color);
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.input-field {
    margin-bottom: 30px;
    transition: 0.4s;
    position: relative;
    display: grid;
    align-items: center;
    opacity: 0;
    width: 100%;
    height: 52px;
    min-height: 52px;
    background-color: var(--bg-color);
}

    .input-field input {
        border: solid 1px var(--border-color);
        border-radius: 12px;
        width: 100%;
        transition: 0.4s;
        padding-left: 20px;
        font-size: 20px;
        color: var(--field-text-color);
        font-weight: bold;
    }

        .input-field input:focus {
            outline: 0;
            border-color: #0000009e;
        }

    .input-field label {
        font-size: 20px;
        color: var(--label-color);
        position: absolute;
        left: 17px;
        transition: 0.4s;
        pointer-events: none;
        width: max-content;
        padding: 0 3px;
        background-color: var(--bg-color);
    }

    .input-field:focus-within label {
        transform: translatey(-24px);
        font-size: 15px !important;
    }

    .input-field input:valid + label {
        transform: translatey(-24px);
        font-size: 15px;
    }

    .input-field input:invalid + label {
        font-size: 20px;
    }

.rememberme {
    display: flex;
    align-content: center;
    height: auto;
    margin-bottom: 30px;
}

    .rememberme label {
        font-size: 15px;
        color: var(--field-text-color);
        font-weight: bold;
        margin-left: 10px;
        word-wrap: normal;
        width: 185px;
    }

    .rememberme input[type=checkbox] {
        -webkit-appearance: none;
        border-radius: 6px;
        background-color: rgb(35, 210, 226);
        width: 22px;
        height: 22px;
        position: relative;
        cursor: pointer;
    }

        .rememberme input[type=checkbox]::before {
            content: "X";
            font-family: 'Titillium Web';
            font-weight: 900;
            font-size: 18px;
            color: var(--heading-color);
            width: 100%;
            transition: 0.4s;
            height: 100%;
            position: absolute;
            text-align: center;
            line-height: 22px;
        }

        .rememberme input[type=checkbox]:checked::before {
            content: '\f00c';
            font-family: "Font Awesome 5 free";
            font-size: 16px;
        }

.forget {
    font-size: 15px;
    color: var(--label-color);
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 30px;
}

    .forget:hover {
        color: #ffc107;
    }

select {
    border: solid 1px var(--border-color);
    border-radius: 12px;
    word-wrap: normal;
    padding: 10px;
}

@media only screen and (max-width: 600px) {
    img.uie {
        display: block;
        margin-left: 100px;
        margin-right: 0;
        width: 50%;
        position: absolute;
        top: -15px;
    }
}

.div-one {
    width: 45%;
}

.div-two {
    width: 45%;
}
