* {
    margin: 0;
    padding: 0;
    direction: rtl;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    border-color: none;
    border: none;
}

body {
    background-color: #BDDDE4;
    justify-items: center;
    width: 100%;
}

/* form style */

.form {
    margin-top: 180px;
    background-color: #252A34;
    width: 500px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-items: center;
    border-radius: 30px;
    box-shadow: #EAEAEA 5px 5px 5px;
}

form {
    padding: 40px 150px;
    width: 100%;
}


/* input adn label style*/

.login-button {
    color: #EAEAEA;
    text-align: center;
    margin: 30px;
    padding-bottom: 30px;
}

label, input {
    display: block;
}

input {
    margin-bottom: 10px;
    height: 30px;
    width: 200px;
    border-radius: 10px;
}

input::placeholder {
    padding-right: 10px;
    color: #252A34;
}

input:focus{
    background-color: #252A34;
    border-color: #252A34;
    color: #EAEAEA;
}

input:focus::placeholder {
    color: #EAEAEA;
}

label {
    margin-top: 3px;
    color: #EAEAEA;
    margin-bottom: 3px;
}

#username-label {
    margin-top: 10px;
}

/* submit style */

#submit {
    background-color: #3e3f41;
    color: #EAEAEA;
    margin-top: 10px;
}

#submit:hover {
    background-color: #EAEAEA;
    color: #3e3f41;
}


/* forget style */

#forget {
    color: #EAEAEA;
    justify-content: center;
}


#description {
    background-color: #EAEAEA;
    box-sizing: content-box;
    border-radius: 25px 25px 0px 0px;
    height: 30px;
    padding-top: 10px;
    justify-items: center;
    justify-content: center;
    text-align: center;
}


@media only screen and (max-width: 780px) {
    .form {
        margin-top: 150px;
        background-color: #252A34;
        width: 400px;
        height: 350px;
    }
    #form-signup {
      height: 400px;
    }
    form {
      padding-right: 120px;
      padding-left: 0;
    }
    .container {
        width: 100%;
        justify-items: center;
    justify-content: center;
    }
    .login-button {
        color: #EAEAEA;
        text-align: center;
        margin: 20px;
        padding-bottom: 30px;
    }

    input {
        margin-bottom: 10px;
        height: 30px;
        width: 170px;
        border-radius: 10px;
    }
    
    input::placeholder {
        padding-right: 7px;
        color: #252A34;
    }

    label {
        margin-top: 3px;
        color: #EAEAEA;
        margin-bottom: 3px;
    }
    
    #username-label {
        margin-top: 7px;
    }
    
    /* submit style */
    
    #submit {
        background-color: #3e3f41;
        color: #EAEAEA;
        margin-top: 7px;
    }

    #description {
        padding-top: 7px;
    }
    
  }