body{
    font-family: arial, sans-serief;
    background-color: white;
    text-align: center;
    direction: rtl;
}
h1{
    color: black;
    margin-bottom: 120px;
}
h2{
    color: black
}
form{

    background-color: rgb(225, 225, 6);
    padding: 30px;
    margin: 0 auto;
    width: 200px;
    border-radius: 8px;
    box-shadow: 0 0 10px black;
    
    
}
label, input{
    display: block;
    width: 100%;
    text-align: right;
    margin-bottom: 10px;
}
button{
    background-color:chartreuse;
    color:black;
    border: none;
    padding: 10px;
    width: 80%;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background-color: white;
}

