@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.col-1 {
  flex-basis: 50%;
  flex-grow: 1;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(img/image.png);
  background-size: cover;
  background-position: center;
  min-height: inherit;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
}

.col-2 {
  flex-basis: 50%;
  flex-grow: 1;
  padding: 50px 80px;
}

.logo {
  width: 200px;
  margin-bottom: 30px;
}

.col-1 ul {
  list-style: none;
}

.col-1 ul li {
  display: flex;
  align-items: center;
  margin: 12px 0;
}

.col-1 ul li img {
  width: 20px;
  margin-right: 15px;
}
.col-2 h2 {
  display: flex;
  align-items: center;
  font-weight: 500;
  margin-bottom: 25px;
  margin-top: -80px;
}

.col-2 h2 img {
  width: 26px;
  margin-right: 10px;
}

form {
  width: 400px;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

label {
  display: block;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: #999;
  cursor: pointer;
}

label span {
  flex: 1;
  margin-left: 15px;
  font-size: 34px;
  font-weight: 600;
  color: #333;
}

label span small {
  font-size: 18px;
}

input[type="radio"]:checked + span {
  color: #ff004f;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  background: transparent;
  padding: 7px 10px;
  outline: none;
  border: 1px solid #333;
  border-radius: 4px;
  margin: 12px 0;
}

form button {
  background: #ff004f;
  color: #fff;
  font-size: 16px;
  padding: 12px 50px;
  margin: 20px 0;
  border: 0;
  outline: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s;
}

form button:hover{
  transform: translateY(-5px);
}

@media screen and  (max-width:1150px) {
  .col-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
  }
  .col-2 h2 {
    margin-top: 100px;
  }
  
}
