@import url("https://fonts.googleapis.com/css2?family=Kalnia:wght@100..700&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
    font-family: 'Kanit', sans-serif;
    background-color: #7c3d96;
    margin: 0;
}

.container {
    background: #fff;
    max-width: 700px;
    margin: 40px auto;
    padding: 40px 32px 24px 32px;
    border-radius: 25px;
    box-shadow: none;
}

h1 {
    font-size: 2rem;
    margin-bottom: 32px;
    font-weight: 500;
}

form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

label {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 500;
}

select,
textarea,
input[type="file"] {
    font-family: 'Kanit', sans-serif;
    background: #dadada;
    border: none;
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 1rem;
    margin-bottom: 8px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 120px;
    max-height: 300px;
}

input[type="file"] {
    padding: 18px 16px;
}

small {
    color: #888;
    margin-top: -12px;
    margin-bottom: 8px;
    display: block;
    font-size: 0.9em;
}

button[type="submit"] {
    background: #2b134b;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 16px;
    width: 220px;
    align-self: center;
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    transform: scale(1.05);
    background-color: #DF8DE3;
}

.aviso {
    color: #888;
    font-size: 0.85em;
    text-align: center;
    margin-top: 12px;
    margin-bottom: 0;
    line-height: 1.3;
}