* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #f7fafc;
    color: #2d3748;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.card {
    background-color: #ffffff;
    width: 100%;
    max-width: 400px;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.logo {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4299e1;
    margin-bottom: 24px;
}

h1 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a202c;
    line-height: 1.3;
}

p {
    font-size: 16px;
    line-height: 1.5;
    color: #718096;
}
