@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;
    @media (min-width: 1376px) {
        overflow: hidden;
    }
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    @media (min-width: 1376px) {
        height: 100vh;
    }
}

.header {
    position: absolute;
    top: 0;
    left: 0;
}

.header .logo {
    margin: 1.4rem;
    max-width: fit-content;
}

h1 {
    display: block;
    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;
    margin-top: 5rem;
    margin-bottom: 0;
    @media (min-width: 1376px) {
        margin-top: 0rem;
    }
}

.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: 12px auto 24px auto;
    box-sizing: border-box;
    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: 12px 24px;
    gap: 12px;
    border-radius: 16px;
    border: 1px solid var(--brand-colors-regent-blue-50, #E8E9F2);
    box-sizing: border-box;
}

.col2 {
    text-align: center;
    padding-top: 26px;
}

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;
    margin: 0;
    padding: 0;
}

a.login {
    padding: 12px 28px 8px 28px;
    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;
    position: relative;
    /* 100% */
    letter-spacing: 0.28px;
    text-decoration: none;
    width: min-content;
}

a.login::before {
    border-radius: 24px;
    background: rgb(255, 255, 255);
    background: linear-gradient(60deg, rgba(255, 255, 255, .2) 20%, rgba(255, 255, 255, 0) 80%);
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: opacity 150ms linear 50ms;
    opacity: 0;
}

a.login:hover::before {
    opacity: 1;
}

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

.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: 14px 12px 10px 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;
    letter-spacing: 0.28px;
    text-decoration: none;
    box-sizing: border-box;
    width: 100%;
    position: relative;
}

.blue-bkgd a.button::before {
    border-radius: 24px;
    background: rgb(255, 255, 255);
    background: linear-gradient(60deg, rgba(255, 255, 255, .2) 20%, rgba(255, 255, 255, 0) 80%);
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: opacity 150ms linear 50ms;
    opacity: 0;
}

.blue-bkgd a.button:hover::before {
    opacity: 1;
}

.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%;
    margin-top: 10px;
}

a.social-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
}

.social-media .blue-background a.social-buttons:hover {
    background: rgb(255, 255, 255, 0.25);
}