.account-page {
        background: #ffff;
        padding: 50px 0;
}

.form-container {
    background: transparent;
    width: 300px;
    height: 410px;
    position: relative;
    border-radius: 10px;
    text-align: center;
    padding: 20px 0;
    overflow: hidden;
}

.form-container span {
    font-weight: 680;
    padding: 0 10px;
    color: #524f4f;
    cursor: pointer;
    width: 100px;
    display: inline-block;
}

.form-btn {
    display: inline-block;
}

.form-container form {
    max-width: 300px;
    padding: 0 20px;
    position: absolute;
    top: 100px;
    transition: transform 1s;

}

#LoginForm input {
    padding: 7px 30px;
    border-radius: 5px;
    background-color: #c9cbce;
    color: #000;
    margin-bottom: 10px;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    outline: none;
}

#RegForm input {
    padding: 7px 30px;
    border-radius: 5px;
    background-color: #c9cbce;
    margin-bottom: 10px;
    border: none;
    outline: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.form-container h3 {
    font-weight: 590;
    color: #088178;
}

form .btn {
    width: 40%;
    border: none;
    cursor: pointer;
    margin: 10px 0;
    border-radius: 5px;
    padding: 5px 10px;
    color: #f2f6f6;
    background-color: #088178;

}

form .btn:focus {
    outline: none;

}

#LoginForm {
    left: -300px;
}

#RegForm {
    left: 0;
}

form a {
    font-size: 10px;
    text-decoration: none;
}

#Indicator {
    width: 100px;
    border: none;
    background: #088178;
    border-radius: 50px;
    height: 4px;
    margin-top: 7px;
    transform: translateX(100px);
    transition: transform 1s;
}


@media (max-width:799px) {
    .section-p1 {
        padding: 40px 40px;
    }
    
    }

    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: #e3e6f3;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 10px;
        transition: 0.3s;
    }

    #navbar.active {
        right: 0px;
    }

    #navbar li {
        margin-bottom: 25px;
    }


    #mobile {
        display: flex;
        align-items: center;
    }

    #mobile i {
        color: #1a1a1a;
        font-size: 24px;
        padding-left: 20px;
    }

    #close {
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: #222;
        font-size: 24px;
    }