/* Reset de estilos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  background-color: #f4f6f9;
}

/* Seção da imagem */
.image-section {
  width: 60%;
  min-height: 100vh;
  background: url('../assets/imgs/Fundo-3.png') no-repeat center center;
  background-size: cover;
  position: relative;
}

.image-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

/* Seção do formulário */
.form-section {
  width: 40%;
    background-color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-section h1 {
  margin-bottom: 30px;
  font-size: 28px;
  color: #04276b; /* Azul escuro da marca */
}



.logo {
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  width: 90%;
}


.form {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
}

.form label {
  font-size: 14px;
  color: #0E78F2;
  font-weight: bold;
  margin-bottom: 5px;
  display: inline-block;
}

.form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.form input:focus {
  border-color: #0E78F2;
  outline: none;
  box-shadow: 0 0 5px rgba(14, 120, 242, 0.3);
}

.form button {
  width: 40%;
  padding: 12px;
  background: linear-gradient(45deg, #0E78F2, #04276b);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  margin-inline: auto;
}

.form button:hover {
  background: #04276b;
}

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

.password-container input {
  flex: 1;
}

.toggle-password {
  position: absolute;
  right: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

svg{
    margin-bottom: 20px;
}    



.grid{
  margin-bottom: 100px;
  justify-items:center;
}

.tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  height: 250px;
  width: 250px;
  margin-top: 30px;
}

.tile a {
  width: 100%;
  height: 220px;
}

.tile .tile__fundo {
  width: 100%;
  height: 220px;
  border-radius: 10px 10px 0px 0px;
}