body {
    background-color: rgb(26, 26, 26);
    color: white;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    text-align: center;
    max-width: 400px;
    width: 100%;
    padding: 20px;
}
.logo {
    margin-bottom: 20px;
}
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
label {
    margin-top: 10px;
    font-size: 16px;
    color: #e0e0e0;
}
input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: none;
    border-radius: 4px;
    color: #000000;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #696969;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #414141;
}

.support-text {
    margin-top: 20px;
    font-size: 12px;
    color: #e0e0e0;
}

footer {
    background-color: #222;
    color: #ccc;
    text-align: center;
    font-size: 12px;
}

.footer-links a {
    color: #ccc;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff; 
}

.footer-social {
    color: #ccc;
    margin: 10px 8px 0; 
    text-decoration: none;
    font-size: 18px;
}

.footer-social a {
    color: #ccc;
    margin: 0 12px; 
    text-decoration: none;
    font-size: 18px;
}

.footer-social a:hover {
    color: #fff; 
}


/* Garante que ambos os campos tenham o mesmo tamanho */
.input-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.input-container input {
    width: 100%;
    padding: 8px 40px 8px 10px; 
    border: none;
    border-radius: 4px;
    color: #000000;
}

.password-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.password-container input {
    width: 100%;
    padding-right: 40px; 
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #ccc;
    font-size: 18px;
}

.option.desativado {
    cursor: not-allowed; 
}

.desativado img {
    opacity: 0.1; 
    filter: grayscale(100%); 
    transition: opacity 0.3s ease, filter 0.3s ease;
    pointer-events: none; 
}

.desativado:hover img {
    opacity: 0.2; 
}

.options-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap; /* Permite que os logos quebrem para a linha abaixo */
    justify-content: center; /* Centraliza quando houver quebra de linha */
    align-items: center;
}

/* Ajustes para telas menores */
@media screen and (max-width: 1520px) {
    .option img {
        width: 350px;  /* Reduz o tamanho dos logos para caber melhor */
        height: auto;
    }
    .options-container {
        gap: 20px; /* Reduz o espaço entre os logos */
    }
}

/* Para telas ainda menores */
@media screen and (max-width: 768px) {
    .option img {
        width: 280px;
        height: auto;
    }
    .options-container {
        flex-direction: column; /* Organiza os logos em uma única coluna */
        gap: 15px;
    }
}
