<Style>
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

.nunito-<uniquifier> {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}


body {
    /*font-family: 'Segoe UI', sans-serif; */
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(to bottom, #ffe5ec, #ffffff);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 420px;
    background-color: #fff0f5;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    text-align: center;
}

h2 {
    color: #d63384;
    margin-bottom: 20px;
}

form, .button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

input, textarea, select, button {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

button {
    background-color: #d63384;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 10px;
}

button:hover {
    background-color: #c2186a;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #ffb3c1;
}

th, td {
    padding: 10px;
    text-align: center;
    background-color: #fff;
}

.success {
    color: #28a745;
    font-weight: bold;
    text-align: center;
}

.error {
    color: red;
    font-weight: bold;
    text-align: center;
}

a {
    text-align: center;
    display: block;
    margin-top: 15px;
    color: #d63384;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
        border-radius: 12px;
    }
    input, textarea, select, button {
        font-size: 15px;
    }
}
</Style>