:root {
    --background-color: #121A1E;
    --text-color: white;
    --primary-color: #152731;
    --secondary-color: #335D67;
    --dark-background: #152731;
    --font-family: Arial, sans-serif;
}

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

body {
    font-family: var(--font-family);
    background: linear-gradient(to bottom, #000000, #007caf); /* Gradiente do preto ao azul */
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;

    height: 100vh;
}

.logo-img {
    max-width: 190px; /* Tamanho máximo da logo */
    height: auto; /* Mantém a proporção da imagem */
    padding-bottom: 15px;
    padding-top: 12px;
}

.container {
    width: 100%;
    max-width: 400px;
     border: 1px solid #5e789dde;
    background-color: rgb(255 255 255 / 10%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.image-banner img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px; 
           border: 1px solid #5e789dde;

}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.form {
    margin-top: 10px;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.input-group label {
    position: absolute;
    left: 10px;
    color: #f6f6f6;
}

.input-group input {
    width: 100%;
    padding: 10px 40px;
    background-color: rgb(255 255 255 / 13%);
    border: 1px solid #86b3f5de;
    border-radius: 5px;
    color: #ffffff;
    outline: none;
    transition: 0.3s ease;
}

.input-group input:focus {
    border-color: #00f0ff;
    box-shadow: 0 0 8px 2px #00f0ff;
}


.input-group button.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #cecece;
    cursor: pointer;
    z-index: 2;
}

.input-group {
    position: relative;
}

.input-group input::placeholder {
    color: #cccccc;
}



.logo-container {
    text-align: center; /* Centraliza o conteúdo */
    margin-bottom: 20px; /* Espaço inferior */
}

.logo-img {
    max-width: 300px; /* Tamanho máximo da logo */
    height: auto; /* Mantém a proporção da imagem */
}

.submit-btn {
    width: 100%;
    padding: 12px;
background: linear-gradient(to bottom, #7f7878, #00406f);
    border: none;
    color: var(--text-color);
    border-radius: 35px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 25px;
}
label {
    display: flex;
    align-items: center;
  }

  input[type="checkbox"] {
    margin-right: 10px; /* Espaçamento de 4px entre o checkbox e o texto */
    margin-left: 10px;
  }
p {
    margin-top: 20px;
    font-size: 14px;
}

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

.submit-btn:focus {
    outline: none;
    box-shadow: 0 0 12px 4px #00f0ff;
}

.submit-btn:hover {
    box-shadow: 0 0 12px 4px #00f0ff;
}

