@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to right, #204b97, #50c4c6);
  height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

.login-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}



.login-box {
  background: rgba(160, 160, 160, 0.1);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  text-align: center;
  color: white;
}

.logo {
  font-size: 40px;
  margin-bottom: 10px;
  color: white;
}

.login-box h2 {
  margin-bottom: 20px;
}

.logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 1px;
}

.input-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.input-group i {
  color: white;
  margin-right: 10px;
}

.input-group input {
  border: none;
  background: transparent;
  outline: none;
  color: white;
  width: 100%;
  font-size: 14px;
}

.options {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 15px;
}

.options label, .options a {
  color: white;
  text-decoration: none;
}

.login-btn {
  width: 100%;
  padding: 12px;
  background-color: #204b97;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.login-btn:hover {
  background-color: #204b97;
}

.divider {
  margin: 20px 0;
  position: relative;
  text-align: center;
  font-size: 13px;
  color: white;
}

.divider::before,
.divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}


#layoutAuthentication_footer {
    
  background: rgba(160, 160, 160, 0.1);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  text-align: center;
  color: white;
}

#layoutAuthentication_footer footer {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#layoutAuthentication_footer .container-fluid {
    max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

#layoutAuthentication_footer a {
    color: #6c757d;
    text-decoration: none;
    margin-left: 10px;
    margin-right: 10px;
    transition: color 0.3s ease;
}

#layoutAuthentication_footer a:hover {
    color: #343a40;
    text-decoration: underline;
}

