* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
.logo {
  width: 300px;
  background-image: url(../icon/Logo.png);
  background-size: 197px;
  background-position: center center;
  background-repeat: no-repeat;
  padding-left: 60px;
  height: 45px;
  line-height: 3px;
  margin: 0 auto 25px;
}

.container {
  width: 370px;
  background-color: #ef6da6;
  color: #ffffff;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
}

form h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-control {
  margin-bottom: 15px;
}

.form-control label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

.form-control input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 100%;
}

button {
  background-color: #ffffff;
  margin-top: 20px;
  color: #ef6da6;
  font-weight: bold;
  font-size: medium;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 3px;
}

button:hover {
  background-color: #000000;
  color: #ffff;
}

button:active {
  background-color: #0056b3;
  transform: translateY(1px);
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  width: 300px;
  text-align: center;
  z-index: 2;
}
.popup.active {
  display: block;
}
.popup h2 {
  margin: 0 0 10px;
  color: #e74c3c; /* Cor para o título */
}
.popup p {
  margin: 0 0 20px;
}
.popup button {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}
.popup button:hover {
  background-color: #2980b9;
}
/* Estilo para o fundo do pop-up */
#popupOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Estilo para o pop-up */
#popupContent {
  position: fixed;
  width: 400px;
  top: 50%;
  box-sizing: border-box;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

#popupContent h3 {
  margin: 0 0 15px;
}

#popupContent input {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#popupContent button {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#popupContent button:hover {
  background-color: #0056b3;
}

.buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;

  & #closePasswordButton {
    background-color: #dc3545;
    &:hover {
      background-color: #c82333;
    }
  }
}
