body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f8;
  background-image: url('../assets/exec-background.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  max-width: 25rem;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.2);
  overflow: hidden;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.login-pane {
  width: 18.75rem;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1 {
  margin-bottom: 1.5rem;
  color: #09b2d1;
  font-size: 1.75rem;
  font-family: cursive;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input[type="email"],
input[type="password"],
input[type="text"] {
  padding: 0.6rem;
  border: 0.06rem solid #ccc;
  border-radius: 0.5rem;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper input {
  width: 100%;
  padding-right: 2.5rem;
}

.toggle-eye {
  position: absolute;
  right: 0.75rem;
  cursor: pointer;
  user-select: none;
  font-size: 1.125rem;
  color: #555;
}

.toggle-eye:hover {
  color: #000;
}

.login-btn {
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background-color: #3B8FF3;
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}

.login-btn:hover {
  background-color: #32de84;
}

.error-text {
  color: red;
  font-size: 0.875rem;
  margin-top: -0.5rem;
  text-align: center;
}

.copyright {
  text-align: center;
  font-size: 0.68rem;
  color: #888;
  margin-top: 0.75rem;
}
