/* 🔹 Reset de estilos e configuração geral */
* {

}

body {
    font-family: 'Arial', sans-serif;
    background: url('https://wallpapercave.com/wp/wp3705696.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #e8e8e8;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}

/* 🔹 Container principal */
.form-container {
    background-color: rgba(42, 42, 42, 0.9);
    border-radius: 8px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 🔹 Informações do servidor */
.serverInfo {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 5px;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
}

/* 🔹 Cada informação do servidor */
.serverInfo span {
    flex: 1;
    font-weight: bold;
    border: 1px solid #f7b000;
    border-radius: 8px;
    color: #e8e8e8;
    font-size: 14px;
    padding: 2px;
    text-align: center;
}

/* 🔹 Status do servidor */
#serverStatus.online {
    background-color: #4caf50;
}

#serverStatus.offline {
    background-color: #f44336;
}

/* 🔹 Banner */
.banner {
    width: 100%;
    margin-bottom: 20px;
}

.banner img {
    width: 100%;
    height: auto;
}

/* 🔹 Formulário */
.form-container input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    font-size: 1.2em;
    border: 2px solid #f7b000;
    border-radius: 4px;
    background-color: #2a2a2a;
    color: #e8e8e8;
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.3);
}

.form-container input::placeholder {
    color: #e8e8e8;
    font-style: italic;
}

/* 🔹 Botão de login */
.form-container button {
    width: 100%;
    padding: 12px;
    background-color: #f7b000;
    color: #2a2a2a;
    font-size: 1.2em;
    font-weight: bold;
    border: 2px solid #000;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.form-container button:hover {
    background-color: #e8e8e8;
    color: #2a2a2a;
}

/* 🔹 Mensagem de resposta */
#response-message {
    margin-top: 20px;
    font-size: 1em;
    color: #f7b000;
}

/* 🔹 Rodapé */
.footer {
    margin-top: 20px;
    text-align: center;
    color: #fff;
}

/* 🔹 Nome do criador */
#raviens {
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.082);
    background-color: rgba(42, 42, 42, 0.041);
    color: #f7b000;
    font-size: 16px;
    padding: 5px;
    text-align: center;
}

/* 🔹 Social links */
#social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 5px 0;
    font-size: 40px;
}

/* 🔹 Estilização individual dos ícones sociais */
#social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #f7b000;
    border-radius: 50%;
    transition: transform 0.3s ease, filter 0.3s ease;
    text-decoration: none;
}

/* 🔹 Efeito hover nos ícones sociais */
#social-links a:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 12px #f7b000);
}

/* 🔹 Responsividade */
/*@media screen and (max-width: 768px) {*/
/*    .form-container {*/
/*        width: 90%;*/
/*        padding: 20px;*/
/*    }*/

/*    .serverInfo {*/
/*        flex-direction: column;*/
/*        align-items: center;*/
/*        text-align: center;*/
/*        gap: 10px;*/
/*    }*/

/*    .form-container input {*/
/*        font-size: 1em;*/
/*    }*/

/*    .form-container button {*/
/*        font-size: 1em;*/
/*    }*/


