/* FONT IMPORTS - START */
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow&display=swap');
/* FONT IMPORTS - END */




/* GENERAL ELEMENTS - START */
html{
    scroll-behavior: smooth;
}
a {
    font-family: 'Jost', sans-serif;
    color: #253e23;
}
/* GENERAL ELEMENTS - END */




/* ANIMATIONS - START */
@keyframes change_color_from_white_to_green {   
    100%{
        background-color: #253e23;
        color: white;
    }
}
/* ANIMATIONS - END */




/* HEADER - START */
header{
    overflow: hidden;
    width: 100vw;
    height: 10vh;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
    position: fixed;
    font-weight: 600;
    box-shadow: 0px 2px 7.5px rgba(94, 121, 108, 0.5);
}
    header menu{
        height: 100%;
        width: 100%;
    }
        header menu nav { 
            height:100%;
            width: 100%;
        }
            header menu nav ul {
                width: 100%;
                height: 100%;
                display: flex;
            }

                menu nav ul li {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 100%;
                    height: 100%;
                    margin: auto;
                    font-size: calc(1rem + 0.3vw);
                    transition: 0.5s;
                }
                    menu nav ul li a{
                        text-decoration: none;
                    }
                menu nav ul li:hover{
                    background-color: #253e23;
                }
                menu nav ul li:hover a{
                    color: white;
                }
/* HEADER - END */




/* MAIN - START */
main{
    overflow:hidden;
}
    .main-article-section1{
        width: 100vw;
        min-height: 75vh;
        padding-top: 20vh;
        padding-bottom: 5vh;
        background-color: #c1d9be;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-family: 'PT Sans Narrow', sans-serif;
        /* font-family: 'Jost', sans-serif; */
        font-weight: 600;
    }
        .you-dont-have-an-account-with-uswrapper{
            padding: 2rem;
            border-radius: 25px;
            background-color: white;
            max-width: 65%;  
        }
        .you-dont-have-an-account-with-uswrapper a{
            /* font-family: 'Montserrat Alternates', sans-serif; */
        }
        
        
        .h2-plus-form-wrapper{
            min-width: 25%;
            padding: 2rem;
            border-radius: 25px;
            background-color: white;
        }
            .main-article-section1 h2{
                margin-bottom: 2vh;
                color:#253e23;
            }
            .main-article-section1 form{
                width: 100%;
            }
                .form-element-wrapper{
                    width: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: left;
                    flex-direction: column;
                    margin-bottom: 5vh;
                }
                .form-element-wrapper label{
                    width: 100%;
                    color:#253e23;
                }
                .form-element-wrapper input{
                    padding: 0.75rem;
                    border-radius: 5px;
                    margin-top: .5rem;
                }
                .label-plus-emailicon-wrapper{
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    color:#253e23;
                }
                .label-plus-emailicon-wrapper i{
                    margin-right: 0.5rem;
                }

                .label-plus-aforgotpassword-wrapper{
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    color: #253e23;
                }
                .label-plus-aforgotpassword-wrapper i{
                    margin-right: 0.5rem;
                }
                .label-plus-aforgotpassword-wrapper a{
                    font-size: .75rem;
                    color: #253e23aa;
                    /* font-family: 'Montserrat Alternates', sans-serif; */
                }
                .submit-button-wrapper{
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }
                .submit-button-wrapper button{
                    padding: 0.75rem;
                    width: 50%;
                    background-color: #253e23;
                    color: white;
                    border: none;
                    border-radius: 50px;
                }
