:root {
    --black: #000000;
    --white: #ffffff;
    --light-green: #EEF5FF;
    --light-purple: #d8dbf0;
    --pink: #FFA5A5;
    --green: #ACD7AE;
    --purple: #6E67C2;
    --border: .1rem solid rgba(0, 0, 0, .1);
    --box-shadow: 0.5rem 1rem rgba(0, 0, 0, .1);
    --color-white: #eef5ff;
    --color-background: #ffffff;
    --color-black: #000000;
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
}



body {
    margin: 0;
    padding: 0;
    background-color: transparent;
    color: #000;
    overflow-x: hidden;
    overflow-y: hidden;
}


.info-section {
    padding-left: 32px;
    display: flex;
    align-items: start;
    background: transparent;

}

.header {
    top: 0%;
    text-align: left;
    padding-bottom: 64px;
}

.logo {
    top: 0%;
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.text-content {
    font-size: 55px;
    font-weight: 800;
    line-height: 1.2;
}

.highlighted-text {
    color: var(--purple);
}



.image-container {
    position: relative;
    width: 70%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: -20%;
    width: 100vw;
    height: 100%;
    background-color: var(--green);
    border-radius: 0 50% 50% 0;
    overflow: hidden;
    z-index: -1;
    animation: expandAnimation .8s ease-in-out forwards;

}

.overlay-image {
    position: relative;
    width: 75%;
    animation: floatAnimation 1.5s ease-in-out infinite;
    margin: 15% 0 40% 20%;
}

.background-image {
    width: 100%;
    display: block;
}


button {
    display: inline-block;
    border-radius: 50px;
    background: var(--purple);
    color: var(--white);
    font-weight: 600;
    font-size: 24px;
    cursor: pointer;
    text-align: center;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 80px;
    padding-right: 80px;
    margin-top: 32px;
}

button:hover {
    background: #433F76;
}





/*......................................login*/
.container {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, .7);
    display: none;
    align-items: center;
    justify-content: center;

}

.container.active {
    display: block;
}

/*========================CSS for login form =====================================*/
.form-box {
    width: 90%;
    max-width: 450px;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 95%;
    transform: translate(-50%, -50%);
    background: var(--color-background);
    padding: 0px 40px 70px;
    text-align: center;
    border-radius: 25px;
    margin: 0px 0 10px 0;
}

.form-box #cross {
    margin-top: 25px;
    margin-left: 95%;
    left: 100%;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: var(--purple);
    color: var(--color-background);
    font-size: 16px;
    cursor: pointer;

}

.form-box h1 {
    font-size: 30px;
    margin-bottom: 60px;
    margin-top: 50px;
    color: var(--color-black);
    position: relative;
}

.input-field {
    background: var(--color-white);
    margin: 15px 0;
    border-radius: 30px;
    display: flex;
    align-items: center;
    color: var(--green);
    width: 375px;
    height: 64px;
    border: 1px solid var(--purple);

}

input {
    width: 100%;
    background: transparent;
    border: 0;
    outline: 0;
    padding: 0;
    font-size: 15px;

}

.material-icons-sharp {
    margin: 30px;
}

form p {
    text-align: left;
    font-size: 14px;
    margin-left: 20px;

}

form p a {
    text-decoration: none;
    color: var(--purple);
}

.btn-field {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-field button {
    flex-basis: 48%;
    background: var(--purple);
    color: var(--color-background);
    font-weight: 610;
    font-size: 18px;
    height: 50px;
    width: 60%;
    border-radius: 30px;
    border: 0;
    outline: 0;
    cursor: pointer;
    padding-bottom: 10%;
}

.input-group {
    height: 250px;
}

.material-icons-sharp:hover {
    color: var(--color-black);
    cursor: pointer;
}

.btn-field button:hover {
    background-color: var(--color-background);
    color: var(--purple);
    border: 1px solid var(--purple);
    transition: 0.5s;
}





.animated-text {
    font-size: 55px;
    font-weight: 800;
    min-width: 280px;
}

.animated-text span {
    position: relative;
}

.animated-text span::before {
    content: "cool";
    color: var(--purple);
    animation: words 20s infinite;
}

.animated-text span::after {
    content: "";
    position: absolute;
    width: calc(100% + 8px);
    height: 100%;
    background-color: var(--white);
    border-left: 2px solid white;
    right: -8px;
    animation: cursor .8s infinite, typing 20s steps(14) infinite;
}

@keyframes cursor {
    to {
        border-left: 2px solid #ff7f5000;
    }
}

@keyframes words {

    0%,
    20% {
        content: "cool";
    }

    21%,
    40% {
        content: "epic";
    }

    41%,
    60% {
        content: "dope";
    }

    61%,
    80% {
        content: "nifty";
    }

    81%,
    100% {
        content: "wow";
    }
}

@keyframes typing {

    10%,
    15%,
    30%,
    35%,
    50%,
    55%,
    70%,
    75%,
    90%,
    95% {
        width: 0;
    }

    5%,
    20%,
    25%,
    40%,
    45%,
    60%,
    65%,
    80%,
    85% {
        width: calc(100% + 8px);
    }
}


































































/* ====================== Animations ========================== */
@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

@keyframes typingAnimation {

    0%,
    100% {
        content: "";
        width: 0;
    }

    25% {
        content: "cool";
        width: 4ch;
    }

    50% {
        content: "trendy";
        width: 8ch;
    }

    75% {
        content: "amazing";
        width: 7ch;
    }

    100% {
        content: "smart";
        width: 5ch;

    }
}

@keyframes expandAnimation {
    0% {
        clip-path: circle(0% at 50% 50%);
    }

    100% {
        clip-path: circle(50% at 50% 50%);
    }
}