/* Same styling as first page but with suitable adjustments */

body {
    margin: 0;
    background: #f0fff3;
    font-family: Arial;
    color: #1b7f41;
}

.container {
    max-width: 700px;
    margin: 60px auto;
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
}

.subtitle {
    text-align: center;
    color: #2c8b52;
    margin-bottom: 25px;
}

.return-form input,
.return-form select,
.return-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #b3f0c5;
    border-radius: 10px;
}

.return-form textarea {
    height: 120px;
}

.return-form button {
    width: 100%;
    padding: 14px;
    background: #1b7f41;
    border: none;
    color: white;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
}

.return-form button:hover {
    background: #146330;
}

.info-box {
    margin-top: 20px;
    background: #e8ffe8;
    padding: 18px;
    border-left: 5px solid #1b7f41;
    border-radius: 10px;
}

.info-box ul {
    line-height: 2;
}