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

body {
    margin: 0;

    
    background-image: url('/static/img/main.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 100vh;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-text h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;

}

.hero-text p {
    font-size: 1.3rem;
    color: #636e72;
    margin-bottom: 40px;
}

.actions {
    display: flex;
    gap: 20px;
}

.btn {
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-login {
    background: linear-gradient(135deg, #4a90e2, #357ABD);
    color: white;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 144,226, 0.4);
}

.btn-register {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
}
.logo {
            max-width: 600px;
            height: auto;
            margin-bottom: 41px;
            border-radius: 20px;
        }

@media (max-width: 600px) {
    .logo {
        max-width: 70%;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-text p {
        font-size: 1.1rem;
    }
    .actions {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
    }
}