body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 15px;
  box-sizing: border-box;
}

.sign-in-container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}


.registration-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 400px; 
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 50px 60px;
  text-align: center;
}


.registration-box .logo{
  max-width: 200px;
  margin-bottom: 20px;
}


.registration-box h2 {
  font-size: 22px;
  margin-bottom: 30px;
}


.registration-box label {
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
  font-size: 18px;
  padding: 15px;
  cursor: pointer;
  width: 90%;
}

.registration-box .label1{
  border-bottom: 1px solid rgb(216, 216, 216);
  padding-bottom: 20px;
 
}


.registration-box input[type="radio"] {
  margin-right: 15px;
}

input[type="radio"]:checked::before {
  background-color: #28a745; /* Цвет при выборе */
}


.registration-box button {
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 20px 20px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  width: 100%;
}

.registration-box button:hover {
  background-color: #218838;
}