/* Global Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #111;
  color: #fff;
}

h1, h3 {
  text-align: center;
}

/* Login Form Styles */
.login-form {
  background: rgba(0, 0, 0, 0.8);
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  margin: 100px auto;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

.login-form h2 {
  text-align: center;
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
}

.login-form label {
  color: #fff;
  font-size: 14px;
  margin-bottom: 5px;
}

.login-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #444;
  background: #222;
  color: #fff;
  font-size: 14px;
}

.login-form button {
  width: 100%;
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  color: #fff;
  padding: 10px;
  border: none;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
}

.login-form button:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 10px rgba(106, 17, 203, 0.8);
}

#loginError {
  text-align: center;
}

/* Main Content Styles */
.background {
  background-image: url('https://i.pinimg.com/originals/ff/f8/85/fff885d77fba52a9c2081ffa288a1b56.jpg');
  background-size: cover;
  background-position: center;
  padding: 20px;
  min-height: 100vh;
}

.container {
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.09);
}

.logo img {
  display: block;
  margin: 0 auto;
  width: 150px;
}

h1.title {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.verified-icon {
  color: #1da1f2;
  font-size: 24px;
}

/* Button Styles */
.btn {
  padding: 10px 15px;
  border: none;
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 10px rgba(106, 17, 203, 0.8);
}

.email-list-container {
  margin-bottom: 20px;
}

.email-list {
  list-style: none;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #444;
  border-radius: 5px;
  background: #222;
}

.email-list li {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
}

.email-list li:last-child {
  border-bottom: none;
}

.email-list li .checkmark {
  color: green;
  font-size: 18px;
  margin-right: 10px;
}

.email-list li button {
  background: none;
  border: none;
  color: #ff5c5c;
  font-size: 18px;
  cursor: pointer;
}

.email-list li button:hover {
  color: #ff3838;
}

#emailCount {
  margin-top: 10px;
  text-align: right;
  font-size: 14px;
  color: #ccc;
}

.email-content label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.email-content input,
.email-content textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
}

.email-content textarea {
  height: 100px;
}

.email-content button {
  width: 100%;
}
