
body {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    height: 100vh;
      display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../image/rent-img/rent-m.png);
  }
  
  select {
    font: inherit;
    border: 1px solid #5c5b5a;
    border-radius: 4px;
    cursor: pointer;
    padding: 3px;
  }
  
  select:focus {
    outline: none;
  }
  
  .event__container {
    height: 80%;
    width: 100%;
     padding: 20px;
     margin: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(26, 26, 26, 0.9);
    background-position: center;
    background-size: cover;
    box-shadow: 5px 5px 15px -4px #000000;
  }
  .info {
    padding: 0 400px;
    color: #fff;
  }
.info h5{
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
  
@media screen and (max-width: 991px) {
    .info {
        padding: 20px;
      }
}



.info label{
color: #fff;
}
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #fff;
}

.info span{
    margin: 0 10px;
    
}
.btn_area{
    margin-top: 40px;
}
.info .button{
    padding: 11px 25px;
    background-color: #FF0000;
    color: #fff;
    outline: none;
    border: none;
    border-radius: 5px;
    margin-top: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 14px;
    height: 14px;
    background: #FF0000;
    position: absolute;
    top: 2px;
    left: 2px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}