* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #e6ebef;
}

.ekran {
  width: 100%;
  display: flex;
  justify-content: center;
}

.kiru_block {
  width: 700px;
  margin-top: 70px;
  margin-left: 5px;
  margin-right: 5px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  /* Көлеңке қосу */
  border-radius: 30px 30px 30px 30px;
  display: flex;
  flex-direction: column;
}

.kiru_block_title {
  width: 100%;
  height: 100px;
  background-color: #2563eb;
  backdrop-filter: blur(50px);
  border-radius: 30px 30px 0px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kiru_block_title h1 {
  color: white;
}

.kiru_block_form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  border-radius: 0px 0px 30px 30px;
  padding: 0px 0px 20px 0px;
}

.qate {
  margin-top: 1px;
  padding: 10px 20px;
  width: 100%;
  color: red;
  border: 1px solid red;
  background-color: rgba(255, 0, 0, 0.247);
  border-radius: 20px;
}

.turalaim {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.first_last_name {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.first_last_name_text {
  width: 100%;
}

/* uiverse.io сайтынан алынған Input коды --------------------------------------------------------------------------------------------------------*/
.name_block_form_input {
  margin-top: 4px;
  width: 100%;
  height: 45px;
  padding: 12px;
  border-radius: 12px;
  border: 1.5px solid lightgrey;
  outline: none;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0px 0px 20px -18px;
}
.name_block_form_input:hover {
  border: 2px solid #2563eb;
  box-shadow: 0px 0px 20px -17px;
}

.name_block_form_input:active {
  transform: scale(0.95);
}

.name_block_form_input:focus {
  border: 2px solid #2563eb;
}
/* uiverse.io сайтынан алынған Input коды --------------------------------------------------------------------------------------------------------*/
/* uiverse.io сайтынан алынған Input коды --------------------------------------------------------------------------------------------------------*/
.kiru_block_form_input {
  margin-top: 3px;
  width: 100%;
  height: 45px;
  padding: 12px;
  border-radius: 12px;
  border: 1.5px solid lightgrey;
  outline: none;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0px 0px 20px -18px;
}
.kiru_block_form_input:hover {
  border: 2px solid #2563eb;
  box-shadow: 0px 0px 20px -17px;
}

.kiru_block_form_input:active {
  transform: scale(0.95);
}

.kiru_block_form_input:focus {
  border: 2px solid #2563eb;
}
/* uiverse.io сайтынан алынған Input коды --------------------------------------------------------------------------------------------------------*/
.text_kiru_block_form {
  width: 100%;
  margin-top: 20px;
}

.password_kiru_block_form {
  margin-top: 20px;
  width: 100%;
}

.tandau {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px 0px;
}

.tandau label {
  cursor: pointer;
}

.kiru_button {
  padding: 12px 70px;
  margin-top: 10px;
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: bold;
  color: white;
  background-color: #2563eb;
  border: 0.1px solid #2563eb;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.kiru_button:hover {
  background-color: #3a72ec;
}

.boss {
  width: 100%;
  height: 40px;
}

@media (max-width: 500px) {
  .kiru_block {
    margin-top: 20px;
  }

  .turalaim {
    width: 95%;
  }

  .first_last_name {
    flex-direction: column;
  }

  .kiru_block_title h1 {
    font-size: 24px;
  }

  .boss {
    height: 20px;
  }
}

@media (max-width: 360px) {
  .kiru_button {
    font-size: 15px;
  }

  .tandau span {
    font-size: 12px;
  }
}
