.login-page-container * {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  background: #f4f6f8;
}

.login-page-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('assets/images/login-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.login-wrapper {
  width: 100%;
  max-width: 720px;
}

.login-card {
  background: #fff;
  padding: 52px 42px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.logo-format {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 22px;
}

.logo {
  width: 220px;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 14px;
  color: #555;
}

.card-title {
  font-size: 22px;
  margin: 18px 0 10px;
}

.reserved-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 26px;
}

.login-link {
  display: inline-block;
  padding: 12px 28px;
  background: #1976d2;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.login-link:hover {
  background: #125aa0;
}
