/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.waitlist-modal {
    position: fixed;
    width: 50vw;
    left: 25%;
    top: 25%;
    z-index: 999;
    padding: 1px;
    border: 1px solid #19a7df;
    border-radius: 4px;
    background: white;
    transition: visibility 0.25s, opacity 0.5s linear;
}


.join-waitlist {
    width: 65%;
}

.button.join-waitlist::before {
    content: "\f0e0";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    padding-right: 6px;

}

span.close {
    float: right;
    color: white;
    font-size: 28px;
    /* background: white; */
    border-radius: 4 px;
    cursor: pointer;
    transition: all .2s linear;
}

span.close:hover {
    transform: rotate(90deg);
}

.joinlist-logo {
    padding: 16px;
    padding: 16px;
    background: white;
    height: 100%;
}

.column.form-box {
    position: relative;
    height: 100%;
    width: 100%;
    margin: 0;
    background: #19a7df;
    color: white !important;
}

.column.form-box h1 {
    color: white !important;
}

.columns {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

button.full-width {
    width: 100%;
}

.icon {
    display: flex !important;
}

p.error-info,
p.success-info {
    padding: 8px;
    visibility: hidden;
    background: white;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#submit-btn {
    background: none;
    border: 1px solid #fff;
    color: white;
    transition: all .3s linear;
}

#submit-btn:hover {
    background: white;
    border: 1px solid #19a7df;
    color: #19a7df;
    transition: all .3s linear;
}

#submit-btn::before {
    content: "\f658";
}

@media only screen and (max-width:740px) {
    .waitlist-modal {
        left: 20px;
        top: 10%;
        width: 90vw;
    }
}
