.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background-color: #121212;
  color: white;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
}

.login-box {
  background-color: #1f1f1f;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
  text-align: center;
}

.logo {
  width: 50px;
  margin-bottom: 15px;
}

.vk-button {
  display: inline-block;
  background-color: #0077ff;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 15px;
}

.links {
  margin-top: 20px;
  font-size: 14px;
}

.links a {
  color: #aaa;
  text-decoration: underline;
  cursor: pointer;
}

.links a:hover {
  color: #fff;
}

/* Модальное окно */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: #2b2b2b;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #444;
  width: 80%;
  max-width: 700px;
  color: #fff;
  border-radius: 8px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: 10px;
}

.close {
  cursor: pointer;
  font-size: 20px;
  color: #fff;
}

.modal-body {
  max-height: 400px;
  overflow-y: auto;
  white-space: pre-line;
}
