@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100&family=Varela+Round&display=swap");

*, *::after, *::before {
    box-sizing: border-box;
}

html {
  background: black;
  width: 100%;
  height: 100%;
  box-sizing: inherit;
}

body {
  font-family: "Roboto", sans-serif;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.main-card {
  background: white;
  padding: 30px;
  max-width: 800px;
  border: 5px solid #d9b812;
}

.main-card h1 {
  text-align: center;
  font-weight: bolder;
  font-size: 30px;
  margin-top: 30px;
}

.main-card h1 span {
  font-size: 25px;
}

hr {
  border: 1px solid #d9b812;
}

.logos-container img {
  height: 100px;
}

.logos-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.guest-form {
    margin-top: 30px;
}

.guest-form input {
  font-family: "Varela Round", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  width: 100%;
  padding: 1rem 1rem;
  margin-top: 15px;
}

.guest-form button {
    width: 100%;
    margin-top: 30px;
    padding: 13px;
    border: none;
    background-color: #d9b812;
    transition-duration: 0.2s;
}

.guest-form button:hover {
    background-color: #b89c0f;
}