* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fcf8ec;
    /* Beige - 60% ratio */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    color: #333;
}

.container {
    width: 100%;
    max-width: 650px;
}

.form-wrapper {
    background: white;
    padding: 40px;
    border: 2px solid #ba1010;
    /* Red border */
    text-align: center;
    border-radius: 20px;
    /* Rounded corners */
}

.brand-logo {
    height: 100px;
    /* Zoomed in logo */
    width: auto;
    margin: 0 auto 20px;
    display: block;
}

h1 {
    color: #ba1010;
    /* Red - 20% ratio */
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 800;
}

.subtitle {
    color: #89758d;
    /* Grey */
    margin-bottom: 35px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #ba1010;
    font-weight: bold;
    font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #89758d;
    background-color: #fff;
    font-size: 15px;
    border-radius: 10px;
    /* Rounded corners */
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #ba1010;
    background-color: #fcf8ec;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-container {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-submit,
.btn-reset {
    flex: 1;
    padding: 15px;
    border-radius: 12px;
    /* Rounded corners */
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    /* No hover underline */
}

.btn-submit {
    background-color: #ba1010;
    /* Red - 20% ratio */
    color: white;
    border: 2px solid #333;
}

.btn-reset {
    background-color: #f8be2c;
    /* Yellow - 15% ratio */
    color: #333;
    border: 2px solid #ba1010;
}

.links {
    text-align: center;
    margin-top: 30px;
}

.links a {
    color: #ba1010;
    text-decoration: none;
    /* No hover underline */
    font-weight: bold;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 14px;
}

@media (max-width: 768px) {
    .btn-container {
        flex-direction: column;
    }
}