/* === AlphaOne Base Theme === */

:root {
  --primary-orange: #f28e30; /* softened orange from the Spartan logo */
  --dark-orange: #d46d00;
  --light-bg: #fff8f1;
  --text-dark: #2b2b2b;
  --border-radius: 8px;
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--light-bg);
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  color: var(--text-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  width: 90%;
  max-width: 400px;
}

h1, h2 {
  color: var(--dark-orange);
  text-align: center;
}

input[type="text"],
input[type="email"],
input[type="password"],
button {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
}

button {
  background-color: var(--primary-orange);
  color: white;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s;
}

button:hover {
  background-color: var(--dark-orange);
}

.form-footer {
  text-align: center;
  margin-top: 1rem;
}

.form-footer a {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: bold;
}
.form-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    margin: auto;
}

input {
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.button-container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 1rem;
}

.button {
  width: 100%;
  padding: 12px;
  background-color: #4f61ff;
  color: white;
  border: none;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.button-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  background-color: #5867dd;
  color: white;
  text-align: center;
  text-decoration: none;
  border: none;
  padding: 0;                 /* remove internal padding */
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  width: 120px;
  height: 45px;               /* fixed height */
  line-height: 45px;          /* vertically center text */
  box-sizing: border-box;
}

.btn:hover {
  background-color: #4753c9;
}

.button-group-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

/* Responsive */
@media screen and (max-width: 500px) {
  .container {
    padding: 1rem;
  }

  input,
  button {
    font-size: 0.95rem;
  }
}

/* Forgott Password Section */
.forgot-password {
    text-align: center;
    margin-top: 10px;
}

.forgot-password a {
    color: #c0392b; /* optional: red-ish tone */
    text-decoration: none;
    font-size: 14px;
}

.forgot-password a:hover {
    text-decoration: underline;
}

/* Basic responsive container */
.responsive-container {
    max-width: 600px;
    margin: auto;
    padding: 20px;
}

/* Card look for role box */
.card {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Button styling */
.btn {
    padding: 10px 15px;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    background-color: #FF6600;
    color: white;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.btn:hover {
    background-color: #e65c00;
}

/* Adjust list items on mobile */
ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    h1, h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .btn {
        font-size: 1rem;
    }
}

.logout-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.logout-btn {
    background-color: #e74c3c;
    color: white;
    padding: 10px 14px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.logout-btn i {
    margin-right: 6px;
}

.logout-btn:hover {
    background-color: #c0392b;
}

.logout-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.logout-btn {
    background-color: #e74c3c;
    color: white;
    padding: 10px 14px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.logout-btn:hover {
    background-color: #c0392b;
}
