

.container {
  padding: 1rem;
}
/* Labels */
label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

/* Shared input styles */
textarea,
input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 15px;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    color: #111;
    outline: none;
}

textarea {
    resize: vertical;
}

/* Focus ring */
textarea:focus,
input[type="text"]:focus {
    border-color: #888;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

/* Placeholder colour */
::placeholder {
    color: #aaa;
}

/* Buttons */
button {
    font-family: inherit;
    font-size: 14px;
    padding: 7px 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    color: #111;
    cursor: pointer;
}

button:hover {
    background: #f5f5f5;
}

button:active {
    transform: scale(0.98);
}

/* Spacing between form fields */
.field {
    margin-bottom: 1rem;
}

/* Button row */
.actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 1.5rem;
}
