* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  margin: 0 auto;
  color: #000000;
  background-color: #000000;
  height: 100%;
  min-width: 320px;
  max-width: 1920px;

  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
  
/*     background-image: url(/images/bg.jpg); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    
    @media (min-width: 768px) {
      /* Your styles for devices larger than mobile phones go here */
      background-size: initial;
    }
    
}

.form-block {
  margin: 0 auto;
  color: #000000;
  /* background-color: #000000; */
  height: 100%;
  min-width: 320px;
  max-width: 1920px;

  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  1border: 1px solid #0f0;
}

.form {
  font-family: sans-serif;
  


  
  border-radius: 20px;
  box-sizing: border-box;
  padding: 20px;
  width: 320px;

  display: flex;
  flex-direction: column;

    @media (min-width: 768px) {
      background-color: #000000ad;
      height: 700px;
  }
  
}

.title {
  color: #eee;
  1font-family: sans-serif;
  font-size: 36px;
  font-weight: 600;
  margin-top: 30px;
  text-align: center;
}

.subtitle {
  color: #aaa;
  1font-family: sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
}

.input-container {
  height: 50px;
  position: relative;
  width: 100%;
}

.logo {
  margin: 0 auto;
  margin-top: 30px;
}

.ic1 {
  margin-top: 20px;
}

.input {
  background-color: #303245;
  border-radius: 12px;
  border: 0;
  box-sizing: border-box;
  color: #eee;
  font-size: 18px;
  height: 100%;
  outline: 0;
  padding: 4px 20px 0;
  width: 100%;
}

.placeholder {
  color: #65657b;
  1font-family: sans-serif;
  left: 20px;
  line-height: 14px;
  pointer-events: none;
  position: absolute;
  transform-origin: 0 50%;
  transition: transform 200ms, color 200ms;
  top: 20px;
}

.input:focus ~ .placeholder,
.input:not(:placeholder-shown) ~ .placeholder {
  transform: translateY(-35px) translateX(-10px) scale(0.75);
}

.input:not(:placeholder-shown) ~ .placeholder {
  color: #65657b;
}

.input:focus ~ .placeholder {
  color: #808097;
}

.submit {
  background-color: #00a864;
  border-radius: 12px;
  border: 0;
  box-sizing: border-box;
  color: #eee;
  cursor: pointer;
  font-size: 18px;
  height: 50px;
  margin-top: 70px;
  // outline: 0;
  text-align: center;
  width: 100%;
}

.submit:active {
  background-color: #007864;
}





.wrapper{
  margin-top: 40px;
  display: inline-flex;
  1background: #aaa;
  1height: 100px;
  1width: 400px;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  border-radius: 12px;
  1padding: 8px 15px;
  1box-shadow: 5px 5px 30px rgba(0,0,0,0.2);

1border: 1px solid #0f0;

}
.wrapper .option{
  1background: #fff;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  1margin: 0 10px;
  border-radius: 5px;
  cursor: pointer;
  padding: 8px 10px;
  1border: 2px solid lightgrey;
  transition: all 0.3s ease;
}
input[type="radio"]{
  display: none;
}
.wrapper .option span{
  font-size: 18px;
  color: #65657b;
}
#option-1:checked:checked ~ .option-1,
#option-2:checked:checked ~ .option-2,
#option-3:checked:checked ~ .option-3,
#option-4:checked:checked ~ .option-4,
#option-5:checked:checked ~ .option-5
{
  border-color: #65657b;
  background: #303245;
}
#option-1:checked:checked ~ .option-1 span,
#option-2:checked:checked ~ .option-2 span,
#option-3:checked:checked ~ .option-3 span,
#option-4:checked:checked ~ .option-4 span,
#option-5:checked:checked ~ .option-5 span
{
  color: #fff;
}
