*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    color: rgb(41, 41, 41);
    text-transform: capitalize;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

nav{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 10px 20px;

    .logo{
        img{
            height: 40px;
            width: 80px;
        }
    }

    .lang{
        cursor: pointer;
        span{
            color: rgb(5, 152, 98);
        }
    }
}

section{
    display: flex;
    justify-content: center;
    margin-top: 20px;

    .form{
        width: 100%;
        max-width: 500px;
        border-radius: 5px;
        padding: 10px;
        box-shadow: 1px 1px 50px 1px rgba(76, 76, 76, 0.878);

        .h1{
            width: 100%;
            display: flex;
            text-align: center;
            justify-content: center;
            margin: 15px;

            h1{
                font-size: 25px;
            }
        }

        .in{
            padding: 30px;
            .h2{
                h2{
                    font-weight: 500;
                }
            }

            .log{
                margin-top: 25px;

                h4{
                    margin-top: 20px;
                }
                
                input{
                    height: 45px;
                    width: 100%;
                    border-color: gray;
                    margin: 5px 0;
                    outline: none;
                    padding: 20px;
                    border: 1px gray solid;
                    border-radius: 5px;
                    &:focus{
                        box-shadow:1px 1px 6px 2px rgba(113, 152, 211, 0.878) ;
                    }
                }

                .forgot{
                    width: 100%;
                    display: flex;
                    justify-content: end;
                    a{
                        text-decoration: none;
                        color: gray;
                    }
                }
            }


            .check{
                margin-top: 20px;
            }

            button{
                margin-top: 80px;
                margin-bottom: 20px;
                width: 100%;
                height: 50px;
                background-color:rgb(24, 103, 117) ;
                color: rgb(255, 255, 255);
                font-size: 15px;
                border-radius: 5px;
            }

        }



        p{
            padding: 10px;
            text-align: center;
        }

                button{
                    width: 100%;
                    height: 36px;
                    font-size: 15px;
                    border-radius: 5px;
                    background-color: white;
                    border-color: rgb(165, 165, 165);
                    outline-color: rgb(162, 162, 162);
                    color: rgb(105, 105, 105);
                }
    }


}

footer{
    background-color: rgb(200, 200, 200);
    color: rgb(66, 66, 66);
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40px;
        align-items: center;
    ul{
        display: flex;
        list-style: none;
        width: 100%;
        margin: 0 auto;
        max-width: 600px;
        justify-content: space-around;
        align-items: center;
        height: 100%;
    }    
}

@media (max-width:700px) {
    section {
        & .form {
            .h1 {
                width: auto;
                display: flex;
                text-align: center;
                justify-content: center;
                margin: 15px;
            }
        }
    }

    section {
        & .form {
            .in {
                padding: 5px;
            }
        }
    }

    section {
        & .form {
            & .in {
                & .log {
                    input {
                        height: 30px;
                    }
                }
            }
        }
    }


    footer{
        margin-top: 50px;
        position: relative;

        p{
            font-size: 15px;
        }

        li{
            font-size: 12px;
        }
    }
}
