/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header */
.header {
    background-color: #f40000;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Content */
.content {
    height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f5f5f5;

    padding-top: clamp(24px, 6vh, 96px);
    padding-bottom: clamp(24px, 6vh, 96px);
    gap: 24px;
}

.title {
    align-self: stretch;
    flex-grow: 0;
    font-family: 'Fira Sans', Arial, sans-serif;
    font-size: 32px;
    font-weight: 600;
    font-stretch: extra-condensed;
    font-style: normal;
    line-height: 0.88;
    letter-spacing: normal;
    text-align: center;
    color: #240000;
}

.title2 {
    align-self: stretch;
    flex-grow: 0;
    font-family: 'Fira Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.22;
    letter-spacing: normal;
    text-align: center;
    color: #240000;
}

/* Icon */
img.Illustration-landing-page {
    width: 120px;
    height: 120px;
    flex-grow: 0;
    object-fit: contain;
}

img.CCEP-Logo {
    width: 550px;
    height: 70px;
    object-fit: contain;
}

/* Button */
.open-app-btn {
    padding: 14px 36px;
    font-size: 15px;
    font-weight: bold;
    background-color: #E61E2A;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

.open-app-btn:hover {
    background-color: #c51a24;
}

.hidden {
  display: none;
}

/* Loader overlay */
.loader-overlay {
  position: fixed;
  inset: 0;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Spinner */
.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top-color: #f40000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

