﻿@media only screen and (orientation: landscape) {
    .page-content {
        flex-direction:row;
    }

    .landscape-polygon-rapper {
        display:block;
    }

    .portrait-polygon-rapper {
        display: none;
    }

    .beta-msg {
        width: 50%;
    }
}

@media only screen and (orientation: portrait) {
    .page-content {
        flex-direction: column;
    }

    .landscape-polygon-rapper {
        display: none;
    }

    .portrait-polygon-rapper {
        display: block;
    }

    .beta-msg {
        width: 100%;
        padding: 30px 0;
    }
}

/*.page-frame {
    min-width: 950px;
}*/

.main-menu-placeholder {
    height: var(--main-menu-computed-height);
}

.page-content {
    display: flex;
    justify-content: space-between;
    /*top: var(--main-menu-computed-height);*/
    /*height: calc(100% - var(--main-menu-computed-height));*/
}

.landscape-polygon-rapper {
    /*flex-grow: 1;*/
    width: 50%;
    /*justify-self:right;*/
}

    .landscape-polygon-rapper p {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #28617C;
        /*width: 70%;*/
        font-size: 2em;
        text-align: center;
        font-family: NeonSans;
        font-weight: bold;
    }

.top-fireworks{
    position:absolute;
    top:50px;
    left:140px;
    width:20%;
}

.bottom-fireworks {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 20%;
}

/*.side-quote{

}*/
.main-title {
    font-family: NeonSans;
    color: #28617C;
    font-weight: bold;
}

input[type=text], input[type=email], input[type=tel], input[type=password] {
    /*background-color: #FFFDAF;*/
    /*background-color: #60C6CF;*/
    /*background-color: #FFFEC8;*/
    /*border: none;*/
    /*border-color: #FDFA72;*/
    border: 1px solid #28617C;
}

/*:not(.multi-row-remarks) > label = label that isn't direct child of .multi-row-remarks */
:not(.multi-row-remarks) > label:not(.remark), span:not(.multi-row-remarks) {
    color: #28617C;
    font-size: 1.2em;
    font-weight: bold;
}

[name=signup-form] {
    /*width: 40%;*/
    padding: 30px;
}

[name=domain] {
    width: auto;
    display: inline-block;
}

[name=signup-form-msg] {
    font-weight: bold;
    color: red;
}

.submit {
    border: none;
    background-color: #28617C;
    color:white;
    margin-top:10px;
}

.portrait-polygon-rapper {
    padding:5% 0;
}

    .portrait-polygon-rapper svg {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }

.portrait-polygon-content {
    display: flex;
    width: 90%;
    margin: 0 auto;
    align-items: center;
}

.portrait-polygon-rapper p {
    color: #28617C;
    /*width: 70%;*/
    font-size: 2em;
    text-align: center;
    font-family: NeonSans;
    font-weight: bold;
}

.portrait-polygon-content .left-fireworks, .portrait-polygon-content .right-fireworks {
    width: 15%;
}

.beta-msg {
    display: flex;
    align-items: center;
    justify-content: center;
    /*rgba(40, 97, 124) = #28617C*/
    color: rgba(40, 97, 124, .7);
}

    .beta-msg h3 {
        width: 80%;
        text-align: center;
    }

[name=signup-form] .remark {
    /*rgba(40, 97, 124) = #28617C*/
    color: rgba(40, 97, 124);
    font-size: 14px;
    /*font-weight: bold;*/
    display: block;
}

[name=signup-form] .multi-row-remarks {
    display: grid;
    grid-template-rows: repeat(2,auto);
    grid-template-columns: min-content auto;
}

    [name=signup-form] .multi-row-remarks label {
        /*rgba(40, 97, 124) = #28617C*/
        color: rgba(40, 97, 124);
        font-size: 14px;
    }

    [name=signup-form] .multi-row-remarks label:nth-of-type(odd) {
        padding-right: 3px;
    }
