body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/background.png?v=3');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    filter: blur(5px);
    z-index: -1;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(0,0,0,0.7);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    align-items: center;
    align-content: center;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}

h1 {
    text-align: center;
    color: #e0e0e0;
}

h2 {
    color: #ffdd00;
}

h3 {
    color: #ffffff;
}

p {
    color: #ffffff;
    line-height: 1.6;
}

.content {
    align-items: center;
    align-content: center;
    text-align: center;
    display: block;
}

.hidden {
    display: none;
}

.flex {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.logo {
    max-width: 30%;
    max-height: 30%;
    width: 30%;
    height: 30%;
}

.logoContent {
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
}

.seperator {
    height: 1px;
    background-color: #cccccc97;
    margin-bottom: 15px;
}

.seperatorStep {
    height: 1px;
    background-color: #ffffff4b;
    margin-bottom: 15px;
    margin-top: 15px;
}

img {
    border-radius: 10px;
}

span {
    color: #e0e0e0;
}

@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    img {
        max-width: 100% !important;
        align-self: center;
    }

    .logo {
        display: flex;
        justify-content: center;
        margin: 5%;
        max-width: 30%;
        width: 300px;
    }
}
