
body {
  font-family: sans-serif;
  max-width: 650px;
  margin: 40px auto;
  padding: 0 16px;
  color: #2d3e2d;
}
/*.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7e9 0%, #e8f0e0 50%, #d4e8d4 100%);
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.3) 0%, transparent 50%);
}
*/
/* Градиентный фон */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7e9 0%, #e8f0e0 50%, #d4e8d4 100%);
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.3) 0%, transparent 50%);
}
/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    /*padding: 10px 20px;
    min-height: 100vh;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    width: 100%;
    border: 1px solid rgba(120, 140, 120, 0.2);
}

h2{
  text-align: center;
  margin-bottom: 24px;
  color: #333;
}
.field {
  margin-bottom: 16px;
}
label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  /*color: #444;*/
  color: #2d3e2d;
  width: fit-content;
  justify-content: left;
}
input, select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
/*button {
  width: 100%;
  padding: 12px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}*/
button {
  display: block;
  width: fit-content; /* или width: 200px; */
  margin: 24px auto 0; /* ← auto по бокам = центр */
  padding: 10px 24px;
  font-size: 1.1rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #4d7e4d, #2d5e2d);
  box-shadow: 0 5px 15px rgba(77, 126, 77, 0.3);
  border: 2px solid transparent;
  color: white;
  cursor: pointer;
  justify-content: center;
}

button:hover {
  /*background-color: #218838;*/
  background: #2d5e2d;
}
.error {
  color: #d9534f;
  margin-top: 8px;
  font-size: 14px;
}
.link {
  text-align: center;
  margin-top: 20px;
}
.link a {
  /*color: #007bff;*/
  color: #12ad12;
  text-decoration: none;
}
.link a:hover { color: #026c02; text-decoration: none; }
