@font-face {
  font-family: 'Helvetica Neue Custom';
  src: url('./fonts/Helvetica-Neue-Light.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

body {
    margin: 0;
    position: relative;
    font-family: 'Helvetica Neue Custom';
    font-weight: 300;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    text-shadow: 0 0px 1px rgba(0, 0, 0, 0.75);
}

.container {
    transform-origin: center;
}

input::placeholder {
    color: #777;
}

.bgVideo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: -1;
}

.container {
    text-align: center;
    max-width: 400px;
    width: 90%;
}

h1 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 10px;
    text-shadow: 0 0px 1px rgba(0, 0, 0, 0.75);
}

p {
    font-size: 0.875rem;
    color: #333;
    margin-bottom: 30px;
    text-shadow: 0 0px 1px rgba(0, 0, 0, 0.75);
}

.active {
    text-decoration: underline;
}

.inputModeButton {
    border: none;
    background-color: transparent;
    color: #333;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.inputModeButton:hover {
    color: #000;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.emailRow, .phoneRow {
    display: flex;
    gap: 10px;
    align-items: center;
}

.emailRow input {
    flex: 1;
}

.phoneRow select {
    flex: 0 0 90px;
    min-width: 90px;
}

.phoneRow input {
    flex: 1;
}

.inputField {
    padding: 12px;
    border: 0px solid #ccc;
    background-color: #f6f6f6bc;
    color: #777;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    height: 44px;
    box-sizing: border-box;
}

.inputField:focus {
    outline: none;
    border-color: #000;
}

.inputButton {
    padding: 12px 20px;
    border: none;
    background-color: #000;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.inputButton:hover {
    background-color: #333;
}

.options {
    padding-top: 10px;
}

#message {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 1;
    text-shadow: 0 0px 1px rgba(0, 0, 0, 0.5);
}

#message.show {
    opacity: 1;
}

#message.fade-out {
    opacity: 0;
    transition: opacity 1s ease;
}

.footer {
    margin-top: 15px;
    font-size: 0.8rem;
    text-shadow: 0 0px 1px rgba(0, 0, 0, 0.75);
}

.footer button,
.footer a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    background-color: transparent;
    font-family: "Helvetica Neue";
    cursor: pointer;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1;
    display: inline;
    vertical-align: baseline;
}

.footer a {
    text-shadow: none;
}

.footerSeparator {
    display: inline;
    margin: 0 8px;
    color: #333;
    text-shadow: 0 0px 1px rgba(0, 0, 0, 0.75);
}

.footer button:hover,
.footer a:hover {
    color: #000;
}