:root {
  --color-primary: #075f94;
  --color-secondary: #6c757d;
  --color-success: #28a745;
  --color-danger: #dc3545;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --color-light: #f8f9fa;
  --color-dark: #343a40;

  --color-text: rgb(4, 82, 130);
  --color-text: 6A634D;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
}

html {
  font-size: 21px;
  line-height: 1.5;
}

@media (prefers-color-scheme: dark) {
  html {
    filter: invert(0) hue-rotate(0deg);
  }
}


body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: #cae3ff0d;
  color: var(--color-text, #333);
}


a,
a:visited {
  text-decoration: none;
  border-bottom: .5px solid;
  color: var(--color-link, #075f94);
}

body {}

.container {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  flex-flow: column;
  background: none;
  align-items: center;
  place-content: center;
  text-align: center;
  min-height: 90vh;
}

.container .head {
  display: flex;
  flex-direction: row;
  width: 90vw;
  max-width: 400px;
  place-content: space-between;
}

.hotel {
  margin: 0 0;
  display: grid;
  gap: .21rem;
  font-size: .75rem;
  text-align: center;
  opacity: .7;
  background: rgba(0, 0, 0, 0.06);
  padding: 1rem 0;
}

footer {
  margin: 1rem 0;
  font-size: .75rem;
  text-align: center;
  opacity: .7;
}

.cp-logo {
}

.cp-logo svg {
  max-width: 175px;
  width: 75vw;
  max-height: 75px;
  padding: 0.25rem;
  object-fit: contain;
}

.logo {
}

.logo svg {
  max-width: 145px;
  width: 75vw;
  max-height: 75px;
  padding: 0.25rem;
  border-radius: 0.5rem;
  fill: #6A634D;
  object-fit: contain;
}

@media only screen and (min-width: 768px) {
  .container {
    flex-flow: row;
    gap: 2rem;
    background-image: linear-gradient(90deg, transparent 0, rgba(0,0,0, 0.019) 50%, transparent 50%);
  }

  .container .head {
    width: 90vw;
    max-width: 400px;
    flex-direction: column;
    gap: 4rem;
  }

  .head svg {
    max-width: 400px;
    width: 90vw;
    max-height: 150px;
    padding: 0.25rem;
    object-fit: contain;
  }

  .head .cp-logo svg {
    max-height: 130px;
  }

}

form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 90vw;
  max-width: 400px;
}

form .error {
  color: var(--color-danger);
  font-size: .95rem;
  font-weight: 500;
}

form .error:empty {
  display: none;
}

form input {
  padding: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 0.25rem;
  font-size: inherit;
  font-family: inherit;
}

form input:user-invalid {
  outline: 2px solid red;
}


form label {
  font-size: .86rem;
  text-align: left;
}

form label.input-text {
  display: grid;
  gap: 0.025rem;
}

form label.input-text span {
  font-size: 0.7rem;
  xopacity: .7;
  color: rgba(0, 0, 0, 0.3);
}

.checkbox-label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  place-items: self-start;
  cursor: pointer;
}

form input[type="checkbox"] {
  margin-top: 4px;
  width: 1rem;
  height: 1rem;
}

form button {
  padding: 0.5rem;
  border: 0;
  border-radius: 0.5rem;
  font-size: inherit;
  font-family: inherit;
  background-color: #f68635;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

form button:disabled {
  background-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
}

.terms {
  padding: 1rem 1rem;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.9);
}

.terms strong {
  font-weight: 600;
}

ul,
ol {
  margin-left: 1.5rem;
}

p {
  margin: 1rem 0;
}