body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 600px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.button-group {
    text-align: center;
    margin-bottom: 15px;
}

button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin: 0 5px;
}

button:hover {
    background-color: #367c39;
}

.info {
    font-size: 0.8em;
    color: #666;
    margin-top: 5px;
}

.info-group {
    margin-bottom: 10px;
    font-size: 0.9em;
}

.info-group label {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 20px;
    }

    input[type="text"],
    textarea {
        font-size: 14px;
    }

    button {
        font-size: 14px;
    }
} 