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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0f0f0f 0%, #2c2c2c 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    background: transparent;
    /* padding: 3rem 2rem; */
    /* border-radius: 20px; */
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
    max-width: 500px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 250px;
    /* height: 120px; */
    margin-bottom: 4rem;
}

h1 {
    color: #999;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 300;
    width: 450px;
    margin: 0 auto 3rem;
}

.button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #3145c4 100%);
    background-size: 200% 200%;
    background-position: 0% 50%;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform 0.2s, background-position 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.button:hover {
    transform: translateY(-2px);
    background-position: 100% 50%;
}

.button:active {
    transform: translateY(0);
}
