body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      background-color: #f5f5f5;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      color: #333;
}

.container {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 400px;
    width: 100%;
}

h1 {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 10px;
      color: #4a76a8;
    }
p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #34495e;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    font-size: 14px;
}

input:focus {
    border-color: #4a90e2;
    outline: none;
    background-color: #ffffff;
    box-shadow: 0 0 4px rgba(74, 144, 226, 0.5);
}

button, .button {
    width: 100%;
    padding: 12px 0px;
    background-color: #4a90e2;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    justify-content: center; /* Горизонтальное центрирование */
    display: block;
    justify-self: center;
    text-align: center;
    margin-top: 10px;
}

button:hover, .button:hover {
    background-color: #357ab8;
    text-decoration: none !important;
}

form {
    margin-bottom: 20px;
}

form:last-of-type {
    margin-bottom: 0;
}

a {
    color: #4a76a8;
    text-decoration: none;
    font-weight: bold;
}
a:hover {
    text-decoration: underline;
}
.footer {
      font-size: 14px;
      color: #999;
      margin-top: 20px;
}
