/* Reset some default browser styles */
/* Reset some default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Styling for the body */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom,  rgb(147, 233, 204),#2980b9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

/* Style for the login container */
.login-page {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  width: 300px;
  padding: 20px;
  text-align: center;
}

/* Style for the "Admin Login" header */
.login-page h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

/* Style for the input fields */
.login-page input[type="text"],
.login-page input[type="password"] {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border: none;
  border-bottom: 1px solid #ccc;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Style for the "Login" button */
.login-page button {
  width: 100%;
  background: #2c3e50;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.login-page button:hover {
  background: #1d2834;
}

/* Style for the "Number Boy" and "Telecaller" buttons */
.top-buttons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.top-button {
  background: none;
  border: none;
}

.top-button a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding: 5px 15px;
  transition: background 0.3s;
}

.top-button a:hover {
  background: #2c3e50;
}

/* Adjust the positioning of the login container */
.login-page {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  width: 300px;
  padding: 20px;
  text-align: center;
}
