/* main.css */

/* Add your custom CSS styles here */

/*Roboto*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/*Roboto Flex*/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/*Allison*/
@import url('https://fonts.googleapis.com/css2?family=Allison&family=Roboto+Flex:opsz,wght@8..144,100..1000&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


:root {
  --primary-color: #035527;
  --secundary-color: #B8ACA4;
  --color3: #811631;
  --color4: #C18A65;

  --font1: 'Acule_regular', sans-serif;
  --font2: 'Ace Sans', sans-serif;
}

:host,:root {
  --fa-style-family-brands: "Font Awesome 6 Brands";
  --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")
}


body {
  font-family: Arial, sans-serif;
  background-color: var(--primary-color);
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.event-info {
  margin-bottom: 20px;
}

.event-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.event-date {
  font-size: 16px;
  margin-bottom: 10px;
}

.event-location {
  font-size: 16px;
  margin-bottom: 10px;
}

.event-description {
  font-size: 16px;
  margin-bottom: 20px;
}

.registration-form {
  margin-bottom: 20px;
}

.registration-form-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.ticket-item {
  margin-bottom: 10px;
}

.ticket-item-label {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.ticket-item-input {
  width: 100%;
  padding: 5px;
  font-size: 16px;
}

.ticket-item-error {
  color: red;
  font-size: 14px;
  margin-top: 5px;
}

.payment-button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
}

.payment-button:hover {
  background-color: #0056b3;
}

.payment-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

header {
  background-color: var(--primary-color);
  width: 100%;
  padding: 30px 0;
  transition: .4s;
  z-index: 11;
}


header img {
  width: 200px;
  display: block;
  margin: auto;
}

header .log {
  display: flex;
  align-items: center;
  justify-content: center;
}

footer {
  display: flex;
  height: 80px;
  background-color: var(--primary-color);
  text-align: center;
  margin-top: 30px;
}

footer p {
  color: #fff;
  font-family: var(--font1);
  margin: auto;
}

div#root {
  padding: 0 30px;
}

button {
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 15px;
  background-color: var(--color3);
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 25px;
  font-weight: bold;
  margin: 5px 10px;
}

.card-title {
  font-family: var(--font2);
  color: #035527;
  font-weight: normal;
  font-size: 40px;
}

.with-border {
  background-color: #DEE1D8;
  border-radius: 10px;
  padding: 15px 30px;
}

.ticket-object {
  display: block;
  text-align: left;
  display: flex;
  flex-direction: column;
  margin: 20px 0;
}

.ticket-object > h3 {
  margin-top: 0;
}

.ticket-object label,
.ticket-object input,
.ticket-object select {
  margin-bottom: 10px;
}

.ticket-object input, 
.ticket-object select {    
  border-radius: 20px;
  height: 40px;
  padding: 0 25px;
  font-size: 17px;
  border-color: #035527;
}

.loading-gif {
  width: 40px;
  height: 40px;
  vertical-align: middle;
}

.fa-moon:before {
  content: "\f186"
}