@font-face {
    font-family: "Oceanwide";
    src: url("assets/Oceanwide-Semibold.otf");
}

@font-face {
    font-family: "Nunito Sans";
    src: url("assets/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf");
}

body {
    background-color: linear-gradient(0deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.64) 100%);
    background-image: url("assets/background.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;

    }

h1 {
    color: #fff;
    text-align: center;
    font-family: "Oceanwide";
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%; /* 32px */
    letter-spacing: 0.64px;
    text-transform: uppercase;
}

.content-wrap {
    display: grid;
    padding: 24px;
    gap: 24px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0px 75px 75px -75px rgba(0, 0, 0, 0.50), 0px 0px 75px 0px rgba(0, 0, 0, 0.10);
    margin: 24px auto;
    box-sizing: border-box;
    width: 297px;

    max-width: 100%;

    @media (min-width:768px) {
        grid-template-columns: 1fr 1fr;
        width: 656px;
    }

    @media (min-width: 1376px) {
        width: 912px;
    }
}

.col1,
.col2 {
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 24px;
    border-radius: 16px;
    border: 1px solid var(--brand-colors-regent-blue-50, #E8E9F2);
    box-sizing: border-box;
}

.col2 {
    text-align: center;
}

p {
    color: var(--neutrals-neutral-400, #657481);
    font-family: Nunito Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

h2 {
    color: var(--brand-colors-regent-blue-800, #0E1146);
    font-family: Oceanwide;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%; /* 18px */
}

a.login {
    padding: 12px 24px;
    gap: 8px;
    border-radius: 24px;
    background: var(--brand-colors-ocean-blue-500, #0031FF);
    color: #fff;
    leading-trim: both;
    text-edge: cap;
    font-family: Oceanwide;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px; /* 100% */
    letter-spacing: 0.28px;
    text-decoration: none;
    width: min-content;
}

.blue-bkgd {
    display: grid;
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 16px;
    border-radius: 8px;
    background: #0E1146;
    box-sizing: border-box;
    width: 100%;
}

.blue-bkgd p {
    color: #E8E9F2;
}

.blue-bkgd .button-group {
    gap: 8px;
    display: flex;
    flex-direction: column;

    @media (min-width: 1376px) {
        flex-direction: row;
    }
}

.blue-bkgd a.button {
    padding: 12px;
    border-radius: 8px;
    background: var(--brand-colors-ocean-teal-500, #1EF290);
    color: var(--brand-colors-regent-blue-800, #0E1146);
    font-family: Oceanwide;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 142.857% */
    letter-spacing: 0.28px;
    text-decoration: none;
    box-sizing: border-box;
    width: 100%;
}

.social-media {
}

.social-media .blue-background {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--brand-colors-regent-blue-800, #0E1146);
    border-radius: 8px;
    justify-content: space-between;
    padding: 16px;
    box-sizing: border-box;
    width: 100%;
}