/* Main Styles for Turo247Xpress Logistics Suite */

:root {
  --primary-color: #1e3a8a; /* dark blue */
  --secondary-color: #e11d48; /* red */
  --accent-color: #111827; /* black */
  --text-color: #374151;
  --light-bg: #f9fafb;
  --border-color: #e5e7eb;
}

body {
  color: var(--text-color);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--light-bg);
}

/* Login Page Styles */
.login-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 2rem;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.login-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.login-logo img {
  height: 4rem;
}

.login-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.login-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  transition: border-color 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.1);
}

.form-remember {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.form-remember input {
  margin-right: 0.5rem;
}

.form-forgot {
  display: block;
  text-align: right;
  color: var(--primary-color);
  text-decoration: none;
  margin-bottom: 1rem;
}

.form-forgot:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  width: 100%;
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn:hover {
  background-color: #1e40af;
}

.login-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.login-footer a {
  color: var(--primary-color);
  text-decoration: none;
}

.login-footer a:hover {
  text-decoration: underline;
}

/* Alert Styles */
.alert {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
}

.alert-danger {
  background-color: #fee2e2;
  border-color: #fecaca;
  color: #b91c1c;
}

.alert-success {
  background-color: #d1fae5;
  border-color: #a7f3d0;
  color: #065f46;
}

/* Footer Styles */
.site-footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
  position: absolute;
  bottom: 0;
  width: 100%;
}
