* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f4f5f9;
}


/* LOGIN PAGE */

.login-page {
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px 15px;

  background:
    linear-gradient(
      rgba(30, 30, 75, 0.93),
      rgba(30, 30, 75, 0.93)
    ),
    url("../../images/backgrounds/page-title.png");

  background-size: cover;
  background-position: center;
}


/* LOGIN BOX */

.login-box {
  width: 100%;
  max-width: 460px;

  background: #ffffff;

  padding: 45px 45px 35px;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.25);
}


/* LOGO */

.login-logo {
  text-align: center;
  margin-bottom: 25px;
}

.login-logo img {
  max-width: 300px;
  width: 100%;
  height: auto;
}


/* HEADING */

.login-heading {
  text-align: center;
  margin-bottom: 30px;
}

.login-heading span {
  display: block;

  color: #ffbc3b;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 8px;
}

.login-heading h2 {
  color: #1e1e4b;

  font-size: 32px;

  margin-bottom: 8px;
}

.login-heading p {
  color: #777777;

  font-size: 14px;
}


/* FORM */

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;

  color: #1e1e4b;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  height: 52px;

  border: 1px solid #dddddd;

  padding: 0 15px;

  font-size: 14px;

  outline: none;

  transition: 0.3s;
}

.form-group input:focus {
  border-color: #ffbc3b;
}


/* OPTIONS */

.login-options {
  display: flex;

  justify-content: space-between;
  align-items: center;

  margin-bottom: 25px;

  font-size: 13px;
}

.remember {
  color: #666666;
}

.remember input {
  margin-right: 5px;
}

.login-options a {
  color: #1e1e4b;
  text-decoration: none;
}

.login-options a:hover {
  color: #ffbc3b;
}


/* LOGIN BUTTON */

.login-btn {
  width: 100%;
  height: 55px;

  border: none;

  background: #ffbc3b;

  color: #ffffff;

  font-size: 14px;
  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;
}

.login-btn:hover {
  background: #1e1e4b;
}


/* BACK WEBSITE */

.back-website {
  text-align: center;

  margin-top: 25px;

  padding-top: 20px;

  border-top: 1px solid #eeeeee;
}

.back-website a {
  color: #777777;

  font-size: 13px;

  text-decoration: none;
}

.back-website a:hover {
  color: #ffbc3b;
}


/* MOBILE */

@media (max-width: 575px) {

  .login-box {
    padding: 35px 25px;
  }

  .login-heading h2 {
    font-size: 27px;
  }

  .login-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.login-error {
  background: #fff0f0;
  border-left: 4px solid #dc3545;
  color: #b02a37;
  padding: 12px 15px;
  margin-bottom: 20px;
  font-size: 14px;
}