* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    background-image: url('../images/bkg1.jpg');
    margin: 0;
    padding-top: 10%;
    display: flex;
    justify-content: center;
  }
  
  
  label {
    display: block;
  }

  .info-container {
    margin: 0 20px;
    width: 800px;
    height: 580px;
    background: white;
  }
  
  .movie-container {
    display: inline-block;
    position: relative;
    vertical-align: top;
    width: 50%;
    height: 100%;
    background: url('../images/payment.jpg') no-repeat center center;
    background-size: cover;
  }
  
  .movie-info {
    color:rgb(0, 0, 0);
    font-size: 12px;
    margin-top: 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.774);
    padding: 20px
  }
  
  .payment-container {
    width: 49%;
    height: 100%;
    color: rgb(0, 0, 85);
    display: inline-block;
  }
  
  .summary {
    padding: 20px 20px;
    border-bottom: 1px solid black;
  }
  
  .section-title {
    margin-bottom: 32px;
    font-size: 22px;
    font-weight: bold;
  }
  
  .payment-info {
    padding: 20px;
  }

  .table {
    width: 100%;
    margin-bottom: 1rem;
  }
   
  .table td {
    font-size: 16px;   
  }
  

  .table td:nth-child(2) {
    text-align: right;
  }
  
  input{
    width: 100%;
    font-size: 12px;
    color: black;
    padding: 10px;
    margin: 12px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 10px;
  }
  
  input:focus{
    font-size: 14px;
  }

  #payBtn {
    margin-left: 10px;
    margin-top: 20px;
    border-radius: 10px;
    font-size: 16px;
    padding: 10px 25px;
    border: solid 1px transparent;
    color: white;
    width: 90%;
    display: block;
    background: navy;
  }

  #payBtn:hover {
    cursor: pointer;
    box-shadow: 0px 0px 15px 5px #FFD264;
  }
  
  @media only screen and (max-width: 850px) {
    .info-container {
      margin-top: 20vw;
    }
  }
  
  
  
  