body {
    font-family: Arial, sans-serif;
    background: #f5f7fb;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 500px;
    margin: 40px auto;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

h1 {
    text-align: center;
    color: #ff6600;
    margin-bottom: 20px;
}

form label {
    display: block;
    margin-top: 12px;
    font-weight: bold;
    color: #333;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

form input:focus,
form textarea:focus {
    border-color: #ff6600;
    box-shadow: 0 0 5px rgba(255,102,0,0.5);
}

textarea {
    resize: none;
    height: 80px;
}

button {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background: #4a90e2;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #1c5fb8;
}




 back,

 .back-btn {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background: #4a90e2;
    color: #fff;
    border: none;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
}

button:hover, .back-btn:hover {
    background: #1c5fb8;
}
/* Responsive */
@media (max-width: 500px) {
    .container {
        padding: 15px;
    }
}