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

body {
    font-family: "Roboto condensed", sans-serif;
    height: 100vh;
    max-width: 100%;
    padding: 5px;
    background: url('/game/imgs/bg-desktop.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    width: 55%;
    margin: 0 auto;
    background-color: #1d447f53;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px 10px 10px 10px;
    margin-top: 50px;
}

/* Logotipo */
.logo-container {
    margin-top: -50px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    max-width: 250px;
    height: auto;
    display: flex;
    position: relative;
    margin-top: 45px;
}

.form-container {
    flex: 1;
    padding: 30px;
    background-color: #1d447f53;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
    color: #e0e0e0;
    position: relative;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #ffffff;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #fff;
}

input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ae0001;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    min-height: 44px;
    touch-action: manipulation;
}

.password-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}

.password-container input {
    width: 100%;


}

.toggle-password {
    position: absolute;
    right: 10px;

    top: 40%;
    transform: translateY(-50%);

    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-password img {
    width: 20px;
    height: 20px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 15px;
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.checkbox-container label {
    font-size: 11px;
    color: #fff;
}

label a {
    color: #f8a000;
    font-size: 0.7rem;
}

form button {
    width: 10%;
    padding: 12px;
    background-color: #ae0001;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #5465d1;
    border: none;
}

form p {
    text-align: center;
    margin-top: 10px;
    color: #fff;
    font-size: 0.8rem;
}

form p a {
    color: #f8a000;
    text-decoration: none;
}


.banner {
    flex: 1;
    background: url('/game/imgs/register-desktop.jpg') no-repeat center center;
    background-size: cover;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

#trigger {
    position: relative;
    top: -260px;
    right: -150px;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    font-weight: 800;
    padding: 2px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        width: 100%;
        margin-top: 100px;
    }

    .banner {
        flex: none;
        width: 100%;
    }

    .banner {
        background-image: url('/game/imgs/register-mobile.jpg');
        min-height: 100px;
        order: -1;
    }

    #trigger {
        position: absolute;
        top: 40px;
        right: 25px;
        font-size: 24px;
        color: #ffffff;
        z-index: 2;
        font-weight: 800;
        padding: 2px;
    }

    body {
        background: url('/game/imgs/bg-mobile.jpg') no-repeat center center;
        background-size: cover;
    }

}

.button-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.button-container button {
    flex: 0.5;
}

.whatsapp-img {
    margin-left: -100px;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.whatsapp-img img {
    width: 30px;
    cursor: pointer;
}


.popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #ccc;
    padding: 20px;
    background: #fff;
    z-index: 1000;
}

.overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 5px;
}

#sair,
#continuar {
    background-color: #1d447f;
    color: #fff;
    border: none;
    margin-right: 5px;
    padding: 5px;
}