/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

/*
.section p {
  text-align: center;
}*/

a {
  color: #90caf9;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
/*
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
}*/

/* Header */
.header {
  background: #1e1e1e;
  border-bottom: 1px solid #333;
  padding: 2rem 0;
  text-align: center;
}

.site-title {
  font-size: 2.5rem;
  color: #90caf9;
}

.tagline {
  font-size: 1.5rem;
  color: #ffffff;
  margin-top: 0.5rem;
}

.subtitle {
  font-size: 1rem;
  color: #aaa;
  margin-top: 0.3rem;
}

/* Section Styling */
.section {
  padding: 2rem;
  margin: 0.5rem 0;
  background-color: #1e1e1e;
 /* border: 1px solid #2a2a2a;*/
 border: 1px solid #2a2a2a;
  border-radius: 8px;
}

.section h2 {
  color: teal;
  margin-bottom: 1rem;
}

/*Body elements && specific classes*/

.section .main_txt{
  text-align: center;
}

.section .dev_c{
  color: orangered;
  margin-bottom: 1px;
}




/* Footer */
.footer {
  text-align: center;
  padding: 1.5rem;
  background-color: #1a1a1a;
  border-top: 1px solid #333;
  color: #777;
}

/*------------------------------------------------------------*/


.auth-buttons {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
}

.auth-buttons .btn {
  background-color: #2a2a2a;
  color: #ffffff;
  padding: 0.5rem 1rem;
  margin-left: 0.5rem;
  border-radius: 5px;
  border: 1px solid #444;
  font-size: 0.9rem;
  transition: background-color 0.3s;
}

.auth-buttons .btn:hover {
  background-color: #444;
  color: #90caf9;
}
