/* ===== STUDENT LOGIN STYLE (GNDU LMS INSPIRED) ===== */

:root {
  --gold: #c39d38;
  --gold-hover: #b08d32;
  --text-dark: #2d3748;
  --text-muted: #718096;
  --input-bg: #eff3fa;
  --input-border: #dbe4f0;
  --white: #ffffff;
  --radius-lg: 12px;
  --radius-md: 8px;
  --shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Wrapper */
.lms-page-wrapper {
  font-family: "Segoe UI", sans-serif;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Branding */
.brand-heading {
  text-align: center;
  margin-bottom: 40px;
}

.brand-logo {
  width: 80px;
  margin-bottom: 10px;
}

.brand-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
}

.text-gold {
  color: var(--gold);
}

/* Layout */
.lms-content-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.lms-left-col,
.lms-right-col {
  flex: 1;
  min-width: 320px;
}

/* Cards */
.login-card,
.docs-card {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* Titles */
.login-title,
.docs-title {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

/* Form */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.lms-input {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  font-size: 14px;
}

.lms-input:focus {
  border-color: var(--gold);
  background: var(--white);
  outline: none;
  box-shadow: 0 0 0 3px rgba(195,157,56,0.15);
}

/* Button */
.lms-btn {
  width: 100%;
  background: var(--gold);
  color: white;
  padding: 14px;
  border: none;
  border-radius: var(--radius-md);
  font-weight: bold;
  cursor: pointer;
}

.lms-btn:hover {
  background: var(--gold-hover);
}

/* Forgot */
.forgot-pass-container {
  text-align: right;
  margin-bottom: 15px;
}

.forgot-pass-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}

.forgot-pass-link:hover {
  color: var(--text-dark);
}

/* Validation */
.val-error {
  color: red;
  font-size: 12px;
}

/* Docs */
.docs-subtitle {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.docs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.doc-item {
  display: flex;
  align-items: center;
  padding: 12px;
  background: var(--input-bg);
  border-radius: var(--radius-md);
  text-decoration: none;
}

.doc-item:hover {
  border: 1px solid var(--gold);
  background: white;
}

.doc-icon {
  font-size: 20px;
  margin-right: 12px;
}

.doc-name {
  font-weight: 600;
}

.doc-desc {
  font-size: 12px;
  color: var(--text-muted);
}

.doc-arrow {
  margin-left: auto;
  color: var(--gold);
}

/* Responsive */
@media(max-width:768px){
  .lms-content-grid {
    flex-direction: column;
  }
}