@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  padding: 20px;
  background-color: #f8f8f8;
}

.logo-section {
  text-align: center;
  margin-bottom: 20px;
}

.logo-section img{
  width: 50%;
  height: 50%;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 24px 8px rgba(211, 47, 47, 0.5); /* Shadow with red tint */
}

.form-section,
.option-section {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type='text'],
input[type='email'],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  padding: 10px 20px;
  border: none;
  background-color: #d32f2f;
  color: white;
  border-radius: 24px;
  cursor: pointer;
  margin-top: 8px;
}

button:hover {
  background-color: #b71c1c; /* Darker shade of red */
  box-shadow: 0px 0px 8px 2px #d32f2f;
}

.table-options {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
  table-layout: fixed; /* Add this to prevent spilling */
}

.table-options th,
.table-options td {
padding: 10px;
border: 1px solid #ccc;
text-align: center;
vertical-align: text-top;
word-wrap: break-word; /* Ensures long text or links wrap inside the cell */
}

.btn-option {
  padding: 10px;
  background-color: #d32f2f;
  color: white;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  display: block; 
  width: 100%;
  }

.btn-option {
  padding: 10px;
  color: white;
  border: none;
  border-radius: 24px;
  cursor: pointer;
}

btn-option:hover {
  box-shadow: 0px 0px 8px 2px #d32f2f;
  }

.payment-section {
  text-align: center;
  margin-top: 20px;
}
