/* global styles */

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

@font-face {
  font-family: "BlauerNue";
  src: url("../webfonts/BlauerNue-Bold.ttf") format("woff2");
  font-weight: bold;
}

@font-face {
  font-family: "BlauerNue";
  src: url("../webfonts/BlauerNue-ExtraBold.ttf") format("woff2");
  font-weight: 800;
}

@font-face {
  font-family: "BlauerNue";
  src: url("../webfonts/BlauerNue-Regular.ttf") format("woff2");
  font-weight: normal;
}

body {
  font-family: "BlauerNue", sans-serif;
  line-height: var(--bs-body-line-height);
  color: #4c5259;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Addtional styles */

.fw-black {
  font-weight: 800 !important;
}

.main-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url("../images/login-bg.png") no-repeat center center / cover;
}

.login-container {
  position: relative;
  z-index: 1;
  max-width: 480px;
  width: 100%;
  margin: 20px;
}

.login-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.login-header {
  background: linear-gradient(to right, #002352, #001435);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.login-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  letter-spacing: 1px;
}

.login-header p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
  color: white;
}

.login-body {
  padding: 40px;
}

.form-label {
  font-weight: 600;
  margin-bottom: 8px;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px 15px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #0a2647;
  box-shadow: 0 0 0 0.2rem rgba(10, 38, 71, 0.15);
}

.btn-login {
  background: #0a2647;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  width: 100%;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-login:hover {
  background: #0d3461;
  color: #f5a700;
  box-shadow: 0 5px 15px rgba(10, 38, 71, 0.3);
}

.register-link {
  text-align: center;
  margin-top: 20px;
  color: #666;
}

.register-link a {
  color: #0a2647;
  font-weight: 600;
  text-decoration: none;
}

.register-link a:hover {
  text-decoration: underline;
}

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.input-icon .form-control {
  padding-left: 45px;
}


/* custom classes */

.smaller {
  font-size: 0.75rem;
}

.mini {
  font-size: 0.65rem;
}

.micro {
  font-size: 0.5rem;
}

.reset-input {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  color: inherit;
}

.reset-input::placeholder {
  color: inherit;
  opacity: 0.5;
}

/* media classes */

@media (max-width: 1200px) {
  /* large screens */
}

@media (max-width: 992px) {
  /* medium screens */
}

@media (max-width: 768px) {
  /* small screens */
}

@media (max-width: 576px) {
  /* extra small screens */
}