* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #FFF0F5; /* Cor de fundo suave */
    color: #4A4A4A;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

.container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    max-width: 500px;
}

h1 {
    color: #FF69B4;
    margin-bottom: 15px;
    font-size: 2rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #FF69B4;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}