/* ---------------- Reset / Base ---------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #ffffff;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------------- Header ---------------- */
.header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 80px;
  border-bottom: 1px solid #e5e5e5;
  gap: 6px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-box {
  width: 36px;
  height: 36px;
  background-color: #4169e1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 18px;
}

.logo-text {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

/* ---------------- Main Content ---------------- */
.main-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.page-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.page-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* ---------------- Card ---------------- */
.card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  max-width: 480px;
  width: 100%;
}

.access-form .form-group {
  margin-bottom: 16px;
}

.access-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}

.access-form input[type="text"],
.access-form input[type="email"],
.access-form input[type="password"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.access-form input:focus {
  border-color: #4169e1;
}

/* ---------------- Info Box ---------------- */
.info-box {
  background: #f1f5ff;
  border-radius: 8px;
  padding: 12px;
  margin: 20px 0;
  border: 1px solid #dbe3ff;
}

.info-title {
  font-weight: 600;
  color: #4169e1;
  margin-bottom: 4px;
}

.info-text {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

/* ---------------- Buttons ---------------- */
.submit-btn,
.back-home-btn {
  display: block;
  width: 100%;
  background: #4169e1;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s;
  margin-top: 10px;
}

.submit-btn:hover,
.back-home-btn:hover {
  background: #3255c5;
}

/* Back to Home button (secondary style) */
.back-home-btn {
  background: #f4f4f4;
  color: #333;
  border: 1px solid #ddd;
}

.back-home-btn:hover {
  background: #ebebeb;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 600px) {
  .header {
    padding: 16px 20px;
  }

  .main-container {
    padding: 20px;
  }

  .card {
    padding: 24px;
  }
}