.signup {
    display: flex;
    background: rgba(0,0,0,.85);
    width: 380px;
    height: auto;
    margin: 0;
    padding: 30px 37px 56px 37px;
    border: 1px solid #e4e4e4;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    position: relative;
    flex-direction: column;
}
.signup h1 {
    color: #fff;
    font-size: 35px;
    font-family: 'Asap', sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
}
.signup option {
    background-color: #eee;
    color: #666;
}

.signup__form {
    flex: 1;
}

.signup .wld-component {
    /*height: 100%;*/
}
.signup .wld-form {
    /*display: flex;
    height: 100%;
    flex-direction: column;*/
}

.signup .wld-form__fields {
    flex: 1;
    display: flex;
    margin: 0 0 5px 0;
}
.signup .wld-form__actions {
    display: flex;
    justify-content: space-between;

}
.signup .wld-fieldgroup {
    flex: 1;
    align-self: center;
    display: none;
}

.signup .wld-fieldgroup--active {
    display: block;
}

.signup .wld-field__input {
    display: flex;
}

/* add space between date pickers */
.signup .wld-input + .wld-input {
}

#signup-dobday {
    border: 0;
    border-radius: 2px 0 0 2px;
    -webkit-border-radius: 2px 0 0 2px;
}
#signup-dobmonth {
    -webkit-border-radius: 0;
    border-radius: 0;
    border-right: 1px solid #999;
    border-left: 1px solid #999;
}
#signup-dobyear {
    -webkit-border-radius: 0 2px 2px 0;
    border-radius: 0 2px 2px 0;
}

.signup .wld-input--select,
.signup .wld-input--text {
    width: 100%;
}


/* confirmation fields */
.signup .wld-field--confirm {
    display: flex;
    flex-wrap: wrap;
}

.signup .wld-field--confirm .wld-field__input {
    flex: 0;
    order: 0;
}

.signup .wld-field--confirm .wld-field__caption {
    order: 1;
    flex: 1;
}


/* hide <labels> */
.wld-field:not(.wld-field--confirm) .wld-field__caption {
    position: absolute;
    visibility: hidden;
}

/*--Tooltips--*/
.signup .wld-field__help, .wld-field.wld-field--confirm {
    background: #fff;
    color: #777;
    font-size: 11px;
    font-family: "Open sans", sans-serif;
    font-weight: 400;
    line-height: 13px;
    margin: 0 20px 0 0;
    padding: 10px;
    width: 100%;
    height: auto;
    box-shadow: 0 0 4px rgba(0,0,0,.2);
    -webkit-border-radius: 15px;
    border-radius: 15px;
    position: absolute;
    bottom: 191px;
    display: flex;
    align-items: center;
    width: auto;
    z-index: 9999;
}
.signup .wld-field__help::before, .wld-field.wld-field--confirm::before {
    content: '';
    background: #fff;
    width: 1em;
    height: 1em;
    transform: rotate(45deg);
    position: absolute;
    bottom: -4px;
    left: 20px;
    z-index: 9999;
}

/* GENERAL INPUT STYING
------------------------------------------------ */
.wld-input {
    font: inherit;
}
.wld-input--text, .wld-input--select {
    display: block;
    color: #222;
    background: #fff;
    width: 100%;
    height: 60px;
    font-size: 16px;
    font-family: "Open sans", sans-serif;
    font-weight: 400;
    padding: 0;
    margin: 0;
    text-indent: 22px;
    line-height: normal;
    border: 0;
    box-shadow: none;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    appearance:none;
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
}

.wld-input--select {
    background: url(../img/select-arrow.png) no-repeat right #fff;
    background-size: 44px 60px;
}

/*--Mozilla Text-indent Fix--*/
@-moz-document url-prefix() {
    .wld-input--select {
      text-indent: 10px!important;
    }
    #signup-dobday.wld-input--select, 
    #signup-dobmonth.wld-input--select, 
    #signup-dobyear.wld-input--select {
        text-indent: 5px!important; 
    }
}

.wld-button {
    display: block;
    background: #c7244f;
    color: #fff;
    font-size: 30px;
    font-family: 'Open sans', sans-serif;
    font-weight: 600;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 19px;
    height: 60px;
    text-align: center;
    border: 0;
    cursor: pointer;
    width: 100%;
    z-index: 9997;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

/* Placeholder Styling */
input::-webkit-input-placeholder {
    color: #000;
    opacity: 1;
}
input:-moz-placeholder { /* Firefox 18- */
    color: #000;
    opacity: 1;  
}
input::-moz-placeholder {  /* Firefox 19+ */
    color: #000;
    opacity: 1;  
}
input:-ms-input-placeholder {  
    color: #000;
    opacity: 1;  
}

/* ERRORS
------------------------------------------------ */
.wld-error-overlay {
    position: absolute;
    background: #c00;
    font-size: 14px;
    font-family: 'Open sans', sans-serif;
    font-weight: 400;
    padding:.5em;
    margin-top: .75em;
    z-index: 9999;
    max-width: 15em;
    box-shadow: 0 3px 5px rgba(0,0,0,.2);
    border-radius: 4px;
    color: #fff;
    z-index: 99999;
}
.wld-error-overlay::before {
    content: '';
    width: 1em;
    height: 1em;
    transform: rotate(45deg);
    background: inherit;
    position: absolute;
    top: -.5em;
}

/*------------Media Queries------------*/ 
@media screen and (max-width: 443px) {
    #signup-dobmonth {
        letter-spacing: -1.5px;
    }
    #signup-dobday.wld-input--select, 
    #signup-dobmonth.wld-input--select, 
    #signup-dobyear.wld-input--select {
        background-size: 24px 40px;
    }
}
@media screen and (max-width: 420px) {
    .signup {
        background: none;
        width: auto;
        padding: 0 20px;
    }
    .signup h2 {
        color: #013243;
    }
    .signup .wld-field__help, .wld-field.wld-field--confirm {
        bottom: 141px;
    }
    .wld-input--text, .wld-input--select {
        -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
        box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
    }
}
@media screen and (max-width: 360px) {
}
@media screen and (max-width: 340px) {
    #signup-dobday, #signup-dobmonth, #signup-dobyear {
        font-size: 13px;
    }
}