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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.container {
    width: 100%;
    max-width: 700px;
}

.card {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: relative;
}

.header {
    text-align: center;
    margin-bottom: 25px;
}

.header h1 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.header p {
    font-size: 14px;
    color: #7f8c8d;
}

/* .container {
    transform: scale(0.8);
    transform-origin: top center;
}

.container {
    pointer-events: auto;
} */