@import url(alerts.css);
/* Alap reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Betűk, színek */
body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  background: #121212;
  color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

hr {
    border: none;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0),   /* bal oldali halvány */
        rgba(255, 255, 255, 0.4), /* közép erősebb */
        rgba(255, 255, 255, 0)    /* jobb oldali halvány */
    );
    margin: 2rem 0;
}

/* Központi doboz */
.login-container {
  background: #1e1e1e;
  padding: 2rem;
  border-radius: 12px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  text-align: center;
}

/* Brand rész */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.2rem;
}

.logo {
  width: 60px;
  height: 60px;
  margin-bottom: 0.5rem;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #4a90e2;
  text-transform: uppercase;
}

/* Cím */
.title {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: #ffffff;
}

/* Formázás */
.login-form .form-group {
  margin-bottom: 1.2rem;
  text-align: left;
}

.login-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #bbb;
}

.login-form input {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #333;
  border-radius: 8px;
  background: #2a2a2a;
  color: #e0e0e0;
  font-size: 1rem;
  transition: border 0.2s, background 0.2s;
}

.login-form input:focus {
  outline: none;
  border-color: #4a90e2;
  background: #333;
}

/* Gomb */
.btn {
  width: 100%;
  padding: 0.9rem;
  background: #4a90e2;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.btn:hover {
  background: #357abf;
}

/* Extra szöveg */
.extra-text {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #aaa;
}

.extra-text a {
  color: #4a90e2;
  text-decoration: none;
}

.extra-text a:hover {
  text-decoration: underline;
}