* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    /*    background: linear-gradient(to right, #667eea, #764ba2);*/
    /*    display: flex;*/
    /*    justify-content: center;*/
    align-items: center;
    height: 100vh;
    /*    color: #fff;*/
}

.centered-container {
    display: flex;
    justify-content: center; /* centers horizontally */
    height: 100vh; /* optional, makes the container full height */
}

.card {
    background: white;
    color: #333;
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
}

h2 {
    margin-bottom: 1.5rem;
}

a.button {
    text-decoration: none;
}

a.button:hover {
    color: #fff;
}

.button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 8px;
    background-color: #007bff;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: rgb(0, 98, 204);
}

.note {
    font-size: 0.85rem;
    color: #666;
}