body {
    margin: 0;
    padding: 0;
    font-family: century-gothic, Arial, Helvetica, sans-serif;
    background-color: #000;
}
.container {
    overflow: hidden;
    display: flex;
    height: 100vh;
    width: 100vw;
    position: relative;
    z-index: 1;
}
.left-column,
.right-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*  LEFT COLUMN */

.left-column {
    color: #000000;
    width: 40%;
}
.logo {
    display: flex;
    justify-content: center;
}
.logo img {
    max-width: 80%;
    /* max-height: 12vh; */
}

/*  RIGHT COLUMN */

.right-column {
    flex-direction: column;
    width: 60%;
    height: 95%;
    color: #fff;
}
.right-column h2 {
    margin-top: 0;
    font-size: 3em;
    font-weight: bold;
}
.right-column h4 {
    font-size: 1.5em;
    font-weight: normal;
}

/* fields */

#subscribe-form {
    width: 70%;
    justify-content: center;
    align-items: center;
}
.fields-container {
    width: 100%;
    border: 1px solid #333;
    background-color: #fff;
    border-radius: 10px;
    padding: 1em 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5em;
}

.form-group {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
}
.form-group:last-child {
    margin-bottom: 0;
}

.label-left {
    width: 1em;
    text-align: center;
    margin: 0 0.5em;
    padding-top: 1em;
    color: red;
    font-weight: bold;
    font-size: large;
}
input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 1em;
    margin-right: 1em;
    box-sizing: border-box;
    /* border-radius: 5px; */
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 1.2em;
}

/* Submit button */
.wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit {
    /* align-items: center;
    justify-content: center; */
    width: 60vw;
    height: 2.2em;
    padding: 0.2em 1em 0.2em 1em;
    margin-top: 0.5em;
    font-size: 2.2em;
    font-family: century-gothic, Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-appearance: none;
    appearance: none;
    outline: 0;
    background-color: #ff69b4;
    /* background: url(https://i.imgur.com/Th606mh.png) no-repeat scroll 1em -2.1em #ff69b4; */
    color: #fff;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: transform ease-in 0.5s, box-shadow ease-in 0.25s,
        all 500ms cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 2px 25px #ff008280;
}
.btn-submit:hover {
    background: #fc81bf;
    color: white;
}
.submit-btn:active {
    transform: scale(0.9);
    background-color: #fd1a8c;
    box-shadow: 0 2px 25px rgba(255, 0, 130, 0.2);
}
.btn-submit .btn-icon {
    text-align: center;
    display: none;
    margin: 0 auto;
}
.btn-submit:active {
    transform: scale(0.9);
    background-color: #fd1a8c;
    box-shadow: 0 2px 25px rgba(255, 0, 130, 0.2);
}
.btn-submit:active .btn-text {
    transform: translateY(3px);
}
.btn-text {
    position: relative;
    display: block;
    transform: translateY(0px);
    opacity: 1;
    transition: opacity 0.01s ease-out;
    /* z-index: 9999; */
}
.btn-submit.complete {
    background: #ff69b4;
    color: white;
}
.btn-submit.complete .btn-text {
    display: none;
}
.btn-submit.complete .btn-icon {
    display: block;
    font-size: 1em;
}
.btn-submit.shrink {
    width: 2.2em;
    height: 2.2em;
    border-radius: 50%;
    box-shadow: inset 0 0 0 0 #e1e1e1;
    padding: 0;
    background: transparent;
}
.btn-submit.shrink .btn-text {
    opacity: 0;
}

.loader {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 6.2em;
    height: 6.2em;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.2 ease-out;
}
.loader.active {
    z-index: 9999;
    opacity: 1;
}

#thanks {
    margin-top: 1em;
    font-size: 1.2em;
    color: fff;
    display: none;
    -webkit-animation: slide-down 0.5s ease-out;
    -moz-animation: slide-down 0.5s ease-out;
}
#thanks.show {
    display: flex;
    position: relative;
    z-index: 9999;
}
@-webkit-keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}
@-moz-keyframes slide-down {
    0% {
        opacity: 0;
        -moz-transform: translateY(-100%);
    }
}
/* Bokeh Background */

.bokeh {
    height: 100vh;
    width: 100vw;
    background-color: #124;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    filter: blur(50px);
    transform: translateZ(0);
    backface-visibility: hidden;
}
.bokeh circle {
    animation: rotate 6s linear infinite;
    fill: #124;
    opacity: 0.43;
    transform-origin: 50%;
}
.bokeh circle:nth-child(2n) {
    fill: #614;
    transform-origin: 20% 110%;
    animation-delay: -3s;
    animation-duration: 4.1316s;
    opacity: 0.2;
}
.bokeh circle:nth-child(3n) {
    opacity: 0.65;
    fill: #469;
    transform-origin: 70% 30%;
    animation-delay: -1.5s;
    animation-duration: 7.9998s;
}
.bokeh circle:nth-child(4n) {
    fill: #c63;
    transform-origin: 110% 70%;
    animation-delay: -2s;
    animation-duration: 4.77996s;
}
.bokeh circle:nth-child(5n) {
    fill: #266;
    transform-origin: 30% 40%;
}
.bokeh circle:nth-child(6n) {
    fill: #124;
    transform-origin: -10% 80%;
    animation-delay: -7.8s;
}
.bokeh circle:nth-child(7n) {
    fill: #614;
    transform-origin: 70% -10%;
}
.bokeh circle:nth-child(8n) {
    fill: #c63;
    transform-origin: -30% 50%;
    animation-delay: -2.4s;
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .logo,
    .form {
        flex: 1;
    }

    #subscribe-form{
        width: 100%;
        font-size: 1em;
    }

    .left-column,
    .right-column {
        display: flex;
        height: fit-content;
        width: 95%;
    }

    .right-column h2{
        display: none;
    }
}

@media screen and (max-height: 600px) {
    .container{
        height: fit-content;
    }
}