/* === General Styles (login, signup, homepage) === */
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  background: #3a456c;
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container styling for centered layout */
.container {
  text-align: center;
  max-width: 600px;
  padding: 2rem;
}

/* Typography */
.title {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-size: 3.5rem;      /* κάνε το λίγο μεγαλύτερο */
  margin-bottom: 3rem;    /* αυξάνει την απόσταση από τα κουμπιά */
}


.subtitle {
  font-size: 1.25rem;
  color: #bbb;
  margin-bottom: 1.5rem;
}

.description {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 2rem;
}




/* Button group */
.button-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

button {
  background-color: #1f1f1f;
  color: #fff;
  border: 2px solid #444;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #333;
  transform: scale(1.05);
  border-color: #666;
}

/* === REMOVE SIDEBAR STYLES FOR CLEAN LOGIN === */
/* deliberately removed sidebar CSS here */
