* {
    box-sizing: border-box;
    border-radius: 8px;
}

body {
    font-family: Arial, sans-serif;
    text-align: left;
    gap: 10px;
}

img {
    max-width: 100%;
    height: auto;
}

h1 {
    text-align: center;
    background-color: #2c2c2c;
    color: white;
    padding: 20px;
    margin: auto;
}

h2 {
    padding: 1rem;
}

p {
    padding: 2rem;
    margin: auto;
}

header {
    text-align: center;
    background-color: #e6e6e6;
    padding: 10px;
    margin: auto;
}

section {
    background-color: #f2f2f2;
    padding: 10px;
    margin: auto;

    width: 90%;
    max-width: 1000px;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.column {
    flex: 50%;
    padding: 5px;
}

.column:first-child {
    display: flex;
    justify-content: flex-start;
}

.column:last-child {
    display: flex;
    justify-content: flex-end;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    height: 5rem;
}

.login-card {
    background: #f2f2f2;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    justify-content: center;
    margin: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    display: inline-block;
    margin-bottom: 10px;
}

textarea {
    field-sizing: content;
    width: 100%;
    min-height: 50px;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 90%;
    padding: 12px 24px;
    box-sizing: border-box;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: sans-serif;
    font-weight: bold;
    line-height: 1.4;
}

.space {
    height: 30px;
}

.break {
    flex-basis: 100%;
    height: 0;
}