* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #ffffff;
  color: #333;
}

.error-banner {
  display: flex;
  align-items: center;
  background-color: #e74c3c;
  color: white;
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 25px;
  font-size: 15px;
  max-width: 250px;
  width: 60%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.3s ease-in-out;
}

.error-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}



.login-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 60px;
}

.logo {
  width: 300px;
  margin-bottom: 50px;
}

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

.login-form label {
  margin-bottom: 9px;
  font-weight: 500; /* Regular */
  font-size: 14px;
}

.login-form input {
  padding: 10px 12px;
  margin-bottom: 20px;
  font-size: 12px;
  border: 4px solid #878585;
  border-radius: 8px;
}

.login-form button {
  padding: 8px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  background: linear-gradient(to bottom, #159BD7, #159BD7);
  border: 1px solid black;
  border-radius: 4px;
  cursor: pointer;
}

.input-wrapper {
  position: relative;
  margin-bottom: 5px;
}

.input-wrapper .icon {
  position: absolute;
  top: 35%;
  left: 12px;
  transform: translateY(-50%);
  color: #95A9AF;
  font-size: 16px;
}

.input-wrapper input::placeholder {
  font-size: 13px; /* ← adjust this to control placeholder size */
  color: #999;
}

.input-wrapper input {
  padding: 10px 12px 10px 36px; /* space for icon */
  font-size: 14px;
  border: 2px solid #ccc;
  border-radius: 4px;
  width: 100%;
}


footer {
  text-align: center;
  padding: 30px 10px 20px;
  font-size: 14px;
  color: #555;
  margin-top: 30px;
}

.language-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px; /* More space between languages and cPanel logo */
}

.footer-bottom {
  margin-top: 100px;
  margin-bottom: 50px;
}

.cpanel-logo {
  width: 24px;
  vertical-align: middle;
  margin-bottom: 5px;
}

.footer-bottom br {
  margin-top: 15px;
  font-size: 8px;
  color: #555;
}

.footer-bottom a {
  color: #555;
  text-decoration: none;
  margin-left: 5px;
}
