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

body {
    /* background-color: #e4d688; */
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.telaLogin, .telaCheckout{
    background: url('../img/login-bg.jpg')no-repeat;
    background-size: cover;
}

.login-container {
    display: grid;
    align-items: center;
    justify-content: end;
    width: 100%;
    position: relative;
    right: 15%;
}

.login-container .frase{
    width: 200px;
    max-width: 80%;
    margin: auto;
    margin-bottom: 20px;
}

.login-box {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    text-align: center;
}

.login-box h1{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 20px;
    color: #292929;
}

.login-box .botaoCheckout{
    width: 100%;
    padding: 12px;
    display: block;
    background-color: #292929;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 10px;
    text-decoration: none;
}
.login-box .botaoCheckout:hover{
    background-color: #333;
}

.logo {
    width: 100%;
    margin-bottom: 30px;
}

h4{
    margin-bottom: 20px;
}

form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

form button {
    width: 100%;
    padding: 12px;
    background-color: #292929;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 15px;
}

form button:hover {
    background-color: #333;
}

.forgot-link{
    display: block;
    font-size: 13px;
    color: #666;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}
.password-container {
    position: relative;
    width: 100%;
}

.password-container input {
    width: 100%;
    padding-right: 40px; /* espaço pro ícone */
    height: 40px; /* ajuste conforme necessário */
    box-sizing: border-box;
    font-size: 16px;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
    color: #333;
    font-size: 20px;
}

.btnJogarAgora{
    background: #000;
    color: #fff;
    border-radius: 20px;
    padding: 7px 20px 5px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 0px;
    display: inline-block;
}

@media(max-width: 1024px){
    .telaLogin, .telaCheckout{
        /* background-position-x: -500px; */
        padding: 0 20px;
        background: url(../img/login-bg-mobile.jpg) no-repeat;
        background-size: cover!important;

    }
    .login-container{
        justify-content: center;
        right: initial;
    }
    .login-container .frase{
        width: 230px;
    }
    .login-box{
        max-width: 450px;
    }
}

@media(max-width: 767px){
    .telaLogin, .telaCheckout {
        background-size: contain;
        background-position-x: 0px;
    }
}

#w1-error-0 {
    display: none !important;
}

#w0-success-0 {
    display: none !important;
}
#w1-success-0 {
    display: none !important;
}
#w0-error-0 {
    display: none !important;
}
