* {
    box-sizing: border-box;
    margin-block-end: 0;
}

.grid-container {
    max-width: min(90%, 60em);
}

body {
    height: 100svh;
    font-family: "Noto Sans", sans-serif;
    position: relative;
    color: black;
    padding: 0;
    margin: 0;
}

.frame {
    border: clamp(1.5rem, 1.0714rem + 1.9048vw, 2.5rem) solid #fff;
}

.page {
    position: relative;
    width: 100%;
    min-height: 100%;
    border: clamp(1.5rem, 1.0714rem + 1.9048vw, 2.5rem) solid #fff;
    padding: 2em 0;
    flex-direction: column;
    justify-content: space-between;
}

.content-wrapper > div {
    row-gap: 2em;
}

.content p {
    font-size: clamp(0.875rem, 0.7679rem + 0.4762vw, 1.125rem);
}

.logo {
    width: clamp(12.5rem, 7.1429rem + 23.8095vw, 25rem);
    max-width: 100%;
    margin-top: 0;
    margin-bottom: clamp(1.5rem, 0.8571rem + 2.8571vw, 3rem);
}

.form {
    background: rgba(255,255,255,.5);
    border-radius: .5em;
    padding: 1.5em 2em;
    margin: 0 -1.5em;
}

.form > div {
    flex-direction: column;
    gap: .5em;
    margin-bottom: .5em;
}

.form input {
    width: 100%;
    padding: .5em.8em;
    border-radius: .2em;
    border-width: 0;
}

.form button {
    text-align: center;
    width: 100%;
    border: 0 solid #ccc;
    border-radius: .2em;
    padding: .8em 1.2em;
    background: #e0b57c;
    font-weight: bold;
    cursor: pointer;
}

.social-icons {
    width: 100%;
}

.social-icons > div {
    gap: 1em;
    margin-top: 1em;
}

.icon img {
    height: 2.4em;
}

a, .button, .icon img {
    transition: .2s all ease;
}

a:hover, button:hover, .icon img:hover {
    filter: brightness(1.1);
}

form p {
    margin: 0 0 1em;
    font-size: .8em;
}

.video-wrapper {
    position: absolute;
    z-index: -1;
    inset: 0;
    overflow: hidden;
}

video {
    position: fixed;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.05);
    opacity: .5;
}
