.container_s {
    display: flex;
    flex-wrap: wrap; /* لجعل الأقسام تتكدس في الشاشات الصغيرة */
    width: 100%;
    background-color: #e8f5e9;
    color: #2e7d32;
    text-align: center;
    padding: 20px  20px;
}


.conttn  {  
    width: 70%;
    margin: 10px auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: right;
    
}


 
 h1, h2 {
     text-align: center;
     color: #1b5e20;
     padding: 10px;
 }
 
 h1{
     font-size: 30px;
     font-weight: 20px;
 }
 
 h2{
     font-size: 20px;
 }
 
 
 
 
 label {
     display: block;
     margin-top: 20px;
     margin-bottom: 5px;
     color: #1b5e20;
    padding: 10px;
    text-align: right;
    font-size: 20px;
 }

 input{
    font-size: 20px;
    text-align: right;
 }

 select{
    padding: 10px;
 }
 
 option{
    font-size: 20px;
    text-align: right;
 }
 textarea{
    text-align: right;
 }

 .sub {
    display: block;
    width: 20%;
    background-color: #2e7d32;
    color: #ffffff;
    padding: 20px;
    border: 2px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    float: right;
    text-align: center;
}

.sub :hover {
    background-color: #1b5e20;
}


