
body {
  font-family: Arial, sans-serif;
  background: url('./assets/background.png') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: white;
}

.head {
    text-align: center;
    padding: 50px;
    
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

button {
    background-color: #ff4500;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #e03e00;
}

a {
    text-decoration: none;
    color: white;
}

/* Modal Styles */
.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 5px;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
/* end tag  */

.form-container {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.form-content {
  text-align: center;
}

h1 {
  font-size: 24px;
}

p {
  font-size: 14px;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 5px;
  font-size: 14px;
}

input, select {
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
}

input[type="date"] {
  color: gray;
}

input[readonly] {
  background-color: #e9ecef;
}
button {
  background-color: #ff4500;
  color: white;
  border: none;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background-color: #e03e00;
}

.form-actions {
  display: flex;
  justify-content: space-between;
}

.skip-btn {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.skip-btn:hover {
  background-color: white;
  color: #ff4500;
}
.form-actions {
    display: flex;
    justify-content: center;
}

.form-actions .btn {
    margin: 5px;
}
.text-justify {
    text-align: justify!important;
}
.next{
    text-decoration: none;
}
/* entry */
.form-container {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: auto;
    margin-top: 50px;
    color: white;
}

.form-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

button {
    background-color: #ff4500;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e03e00;
}

.payment-btn {
    animation: bounceIn 1s ease;
}

@keyframes bounceIn {
    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

a {
    text-decoration: none;
    color: white;
}
.entry-fee-info {
margin-top: 20px;
font-size: 1.2em;
font-weight: bold;
color: #333;
}
.payment-btn {
display: flex;
align-items: center;
justify-content: center;
padding: 10px;
margin: 5px;
border: none;
background: #6d6a6a;
}

.payment-logo {
height: 24px;
width: auto;
margin-right: 10px;
}

@media (max-width: 768px) {
.payment-logo {
height: 20px;
}
}
/* table */
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  border: 1px solid #1b1919;
  padding: 8px;
  text-align: center;
}
th, td {
  background-color: white;
}
td{
  color: black;
}

.note {
  margin-top: 20px;
  font-size: 0.9em;
}
.contact {
  margin-top: 10px;
  font-size: 1em;
}
@media (max-width: 600px) {
  .container {
      padding: 5px;
  }
  th, td {
      font-size: 0.9em;
  }
}