body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  color: white;
}

/* Фон */
.bg {
  background: url('../img/background.jpg') no-repeat center center fixed;
  background-size: cover;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Меню */
header {
  position: absolute;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  padding: 15px;
  text-align: right;
}
header a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}
header a:hover {
  text-decoration: underline;
}

/* Форма */
.form-container {
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
}
.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 15px;
}
label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}
input, textarea, select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
}
textarea {
  min-height: 80px;
}
.checkboxes label {
  display: inline-block;
  margin-right: 10px;
}
button {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}
button:hover {
  background: #45a049;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: rgba(0,0,0,0.6);
  font-size: 12px;
}

/* Меню */
header {
  position: absolute;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  padding: 15px;
  text-align: right;
}
header .btn {
  color: white;
  margin: 0 10px;
  padding: 10px 18px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid white;
  border-radius: 8px;
  transition: 0.3s;
}
header .btn:hover {
  background: white;
  color: black;
}

/* Фон */
.bg {
  background: url('../img/background.jpg') no-repeat center center fixed;
  background-size: cover;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

// ДОСКА
.dashboard-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.dashboard-menu a {
  display: inline-block;
  padding: 12px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: #007bff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.dashboard-menu a:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.dashboard-menu a.logout {
  background: #dc3545;
}

.dashboard-menu a.logout:hover {
  background: #a71d2a;
}
