body {
  
    direction: rtl;
    text-align: right;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}
.registration {
    background: white;
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
label, input, select, button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
}
button {
    background:  rgb(184, 151, 91);
    color: white;
    border: none;
    cursor: pointer;
}
button:hover {
    background: rgb(156, 130, 81);
}

.contain {
    max-width: 400px;
    margin: 50px auto;
}
.box {
    border: 2px solid  rgb(184, 151, 91);;
    padding: 20px;
    margin: 20px 0;
    background: white;
    border-radius: 10px;
}
.icon {
    width: 50px;
    height: 50px;
    background-color:  rgb(184, 151, 91);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}
.phone, .email {
    font-size: 20px;
}
.phone a, .email a {
    color: rgb(5, 5, 167);
    text-decoration: none;
}