body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0b5ed7, #0a7d5e);
    color: #fff;
}

.container {
    padding: 40px 20px;
    text-align: center;
}

.logo {
    width: 110px;
    margin-bottom: 10px;
}

.title {
    font-size: 26px;
    font-weight: bold;
}

.subtitle {
    margin-top: 10px;
    font-size: 15px;
    color: #e0e0e0;
}

.status {
    margin-top: 10px;
    font-size: 14px;
    color: #d0d0d0;
}

.email {
    margin-top: 20px;
    font-weight: bold;
    font-size: 15px;
}

.button {
    margin-top: 20px;
    display: inline-block;
    padding: 12px 18px;
    background: #ffffff;
    color: #0b5ed7;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.contact {
    color: #fff;
    padding: 40px 20px;
    border-radius: 20px 20px 0 0;

    display: flex;
    flex-direction: column;   /* 👈 IMPORTANT */
    align-items: center;      /* center horizontally */
}

.contact h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 400px;   /* LIMIT WIDTH ALWAYS */
}

.contact-form input,
.contact-form textarea {
    background: #ffffff;
    color: #333;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
}

.contact-form textarea {
    min-height: 100px;
}

.contact-form button {
    padding: 12px;
    background: #0b5ed7;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
}