/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom right, #10141c, #1f2a38);
    color: #f4f4f4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Logo */
.crypto-adz-login img {
    width: 150px;
    margin-bottom: 10px;
}

/* Slogan */
.slogan-crypto-adz-login {
    font-size: 1.2rem;
    color: #ffcc00;
    margin-bottom: 30px;
    font-weight: bold;
  
    
    
}



/* Container de login */
.login-container {
    background-color: #1e2733;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-container h2 {
    margin-bottom: 20px;
    color: #ffffff;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
    background-color: #2d3748;
    color: #f4f4f4;
    font-size: 1rem;
}

.login-form input::placeholder {
    color: #a0aec0;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #3182ce;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #2b6cb0;
}

button:disabled {
    background-color: #4a5568;
    cursor: not-allowed;
}

/* Link de cadastro */
.cadastro-link {
    margin-top: 15px;
    font-size: 0.9rem;
}

.cadastro-link a {
    color: #63b3ed;
    text-decoration: none;
}

.cadastro-link a:hover {
    text-decoration: underline;
}

/* Painel inferior */
.dashboard-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
    text-align: center;
}

.dashboard-stats div {
    background-color: #2a3547;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    min-width: 150px;
    font-size: 0.95rem;
    font-weight: 500;
}

.dashboard-stats i {
    margin-right: 8px;
    color: #f6ad55;
}
/* Ícone do token */
.dashboard-stats .token-icon {
  width: 20px;              /* tamanho controlado */
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 5px;
  transform: translateY(-1px); /* ajusta o alinhamento com o texto */
}

/* Texto de rodapé */
.ptc-ads {
    margin-top: 40px;
    font-size: 1rem;
    color: #a0aec0;
}

/* CAPTCHA container ajuste */
.cf-turnstile {
    margin: 20px 0;
}

/* Responsivo */
@media (max-width: 500px) {
    .dashboard-stats {
        flex-direction: column;
        align-items: center;
    }

    .dashboard-stats div {
        width: 100%;
        max-width: 300px;
    }
}




