*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Tahoma,sans-serif;
}

body{

    direction:rtl;

    background:#eef2f5;

    color:#333;

}

.container{

    width:90%;

    max-width:800px;

    margin:50px auto;

    background:white;

    padding:40px;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.10);

}

h1,
h2{

    text-align:center;

    color:#053734;

    margin-bottom:15px;

}

.subtitle{

    text-align:center;

    color:#777;

    margin-bottom:35px;

    line-height:1.9;

}

form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

label{

    color:#053734;

    font-weight:bold;

    font-size:16px;

}

input{

    width:100%;

    padding:14px 16px;

    border:1px solid #ccc;

    border-radius:10px;

    font-size:16px;

    transition:.3s;

}

input:focus{

    outline:none;

    border-color:#D4AF37;

    box-shadow:0 0 10px rgba(212,175,55,.25);

}

button{

    background:#053734;

    color:white;

    border:none;

    padding:15px;

    border-radius:10px;

    cursor:pointer;

    font-size:17px;

    transition:.3s;

}

button:hover{

    background:#07524d;

    transform:translateY(-2px);

}

.card{

    margin-top:25px;

    background:#fafafa;

    border-right:5px solid #D4AF37;

    padding:25px;

    border-radius:12px;

}

.card p{

    margin:12px 0;

    line-height:2;

}

.card strong{

    color:#053734;

}

hr{

    margin:25px 0;

    border:none;

    border-top:1px solid #ddd;

}

h3{

    color:#053734;

    margin-bottom:12px;

}

.reply{

    background:#eef7f5;

    border:1px solid #c8e6df;

    padding:18px;

    border-radius:10px;

    line-height:2;

    margin-top:15px;

}

.answered{

    display:inline-block;

    background:#dff6e5;

    color:#0a7d33;

    padding:8px 18px;

    border-radius:25px;

    font-weight:bold;

    margin-bottom:20px;

}

.waiting{

    display:inline-block;

    background:#fff4d8;

    color:#b8860b;

    padding:8px 18px;

    border-radius:25px;

    font-weight:bold;

    margin-bottom:20px;

}

.error{

    color:#c0392b;

    margin-bottom:25px;

}

a{

    text-decoration:none;

}

a button{

    margin-top:25px;

    width:100%;

}

@media(max-width:768px){

    .container{

        width:95%;

        padding:25px;

    }

    h1,
    h2{

        font-size:26px;

    }

    .subtitle{

        font-size:15px;

    }

    input{

        font-size:15px;

    }

    button{

        font-size:16px;

    }

}