﻿.page-container
{
    padding: 4px;
}

.glassy-window
{
    max-width: 450px;
    width: 100%;
    padding: 0 0 32px 0;
}

.form-container
{
    margin: 16px 0 0;
}

.title
{
    color: #000;
    /*color: #fff;*/
    font-size: 2em;
    font-weight: 700;
    text-align: center;
    margin: 32px 0 48px 0;
}

.button
{
    display: block;
    text-align: center;
    color: #000;
    background: #fff;
    max-width: 400px;
    width: 90%;
    padding: 1em 0;
    margin: 16px auto;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0px 0.2px 0.4px rgb(0 0 0 / 2%), 0px 0.5px 1px rgb(0 0 0 / 2%), 0px 1.1px 2.1px rgb(0 0 0 / 3%), 0px 2.2px 4.4px rgb(0 0 0 / 3%), 0px 6px 12px rgb(0 0 0 / 10%);
}

.button.email
{
    color: #fff;
    background: #30345c;
}

.button.social
{
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    width: 256px;
    height: 48px;
    padding: 0;
}

.button.social img
{
    margin: 0 12px;
}


.alternatives-split {
    display: grid;
    place-items: center;
    position: relative;
    width: 256px;
    margin: 24px auto;
    color: #888;
}

.alternatives-split::before,
.alternatives-split::after
{
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 1em);
    height: 1px;
    background: #ddd;
}

.alternatives-split::before
{
    left: 0;
}

.alternatives-split::after
{
    right: 0;
}