/* Dark background full screen */
body.dark-bg {
  background-color: #111;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  color: #fff;
}

/* Login box container */
.login-container {
  background-color: #1e1e1e;
  border-radius: 10px;
  padding: 40px;
  width: 350px;
  text-align: center;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.4);
}

/* Page title */
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Inputs and button uniform size */
.login-container form input,
.login-container form button {
  width: 100%;
  height: 44px;
  box-sizing: border-box;
  margin: 8px 0;
  border-radius: 6px;
  font-size: 14px;
}

/* Input styling */
.login-container form input {
  background-color: #111;
  border: 1px solid #333;
  padding: 0 12px;
  color: white;
}

.login-container form input::placeholder {
  color: #aaa;
}

/* Login button styling */
.login-btn {
  background-color: #f5a623; /* yellow-orange */
  color: black;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.login-btn:hover {
  background-color: #d18b1f;
}

/* Forgot password link */
.links {
  margin-top: 12px;
}

.links a {
  color: #3897f0;
  text-decoration: none;
  font-size: 14px;
}

.links a:hover {
  text-decoration: underline;
}

/* Sign up link */
.signup {
  margin-top: 20px;
  font-size: 14px;
}

.signup a {
  color: #3897f0;
  text-decoration: none;
}

.signup a:hover {
  text-decoration: underline;
}


/* sign up page */
body.dark-bg {
    background-color: #000;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #fff;
}

.signup-container {
    background-color: #111;
    padding: 40px;
    border-radius: 8px;
    width: 370px;
    text-align: center;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.4);
}

.portal-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.portal-desc {
    font-size: 0.9rem;
    color: #f5a623;
    margin-bottom: 20px;
}

.signup-container form input,
.signup-container form select,
.signup-container form button {
    width: 100%;
    height: 42px;
    margin: 8px 0;
    border-radius: 6px;
    font-size: 14px;
    border: 1px solid #333;
    padding: 0 10px;
    background-color: #000;
    color: #fff;
    box-sizing: border-box;
}

.signup-container form input::placeholder {
    color: #aaa;
}

.signup-container form select {
    background-color: #000;
    color: #fff;
}

.signup-btn {
    background-color: #f5a623;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
    color: black;
}

.signup-btn:hover {
    background-color: #d18b1f;
}

.login-link {
    margin-top: 15px;
    font-size: 14px;
}

.login-link a {
    color: #3897f0;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

