body {
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #8073f3, #3b1b79);
    color: white;
    text-align: center;
}

body::before {
    content: "";
    background: url('./Logo2.png') no-repeat center center;
    background-size: contain;
    opacity: 0.2; /* Faded effect */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.container {
    max-width: 500px;
    padding: 20px;
    position: relative;
    z-index: 1;
}