body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f7fa;
}

.container {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    color: #1c5d85;
    font-size: 1.5rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

label {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    font-size: 0.95rem;
    color: #333;
}

input, textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

textarea {
    resize: vertical;
    min-height: 60px;
}

button {
    padding: 0.75rem;
    background-color: #1c5d85;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #144766;
}

.info {
    font-size: 0.8rem;
    color: #666;
}

.stern {
    color: red;
    margin-right: 4px;
}

.label-inline {
    display: inline-block;
    margin-bottom: 0.4rem;
    font-weight: bold;
}

input, textarea {
    background-color: #c4c4c4;
}

