@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Koulen&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tuffy:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #2B2B63;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 0 50px;
    color: white;
  }
  
  .logo-section {
    display: flex;
    align-items: center;
  }
  
  .logo-section img {
    width: 500px;
    margin-left: 20px;
  }
  
  .logo-text {
    font-size: 36px;
    font-weight: bold;
  }
  
  .form-container {
    background-color: #FFB310;
    padding: 50px;

    border-radius: 15px;
    width: 550px;
    height: 550px;
  }
  
  .form-container h2 {
    text-align: center;
    color: white;
    margin-bottom: 15px;
  }
  
  label {
    font-weight: bold;
    display: block;
    margin: 20px 0 5px;
    color: white;
  }
  
  select,input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background-color: #D9D9D9;
  }
  
button {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background-color: #2B2B63;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
  
button:hover {
    background-color: #2B2B63;
}

h2{
    color: white;
    font-size: 45px;
}



.payment-container {
  background: white;
  border-radius: 20px;
  padding: 100px;
  width: 350px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.pay-options {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.pay-option {
  flex: 1;
  margin: 0 5px;
  padding: 12px;
  border: 2px solid #ccc;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background: #f9f9f9;
  color: black;
}

.pay-option.active {
  background: #4f46e5;
  color: white;
  border-color: #4f46e5;
}

.divider {
  text-align: center;
  margin: 15px 0;
  color: #777;
}

input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

.expiry-cvv {
  display: flex;
  gap: 10px;
}

.checkout-button {
  width: 100%;
  padding: 12px;
  margin-top: 20px;
  background-color: #2B2B63;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.checkout-button:hover {
  background-color: #333;
}