@charset "utf-8";

#nl-landing-form {
    width: 980px;
    height: auto;
    background-color: #f3f3f3;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    overflow: hidden;
    margin: 40px auto 0;
    border: 1px solid #0b72b5;
}

#nl-left {
    width: 50%;
    height: 261px;
    background-size: cover;
    background-position: 50% 50%;
}

#nl-right {
    width: 50%;
    height: 261px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
}

#nlr-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.nl-field {
    display: flex;
    width: 93%;
    height: 38px;
    padding: 0px 10px;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
    background: var(--White, #FFF);
    border: 0;
    margin: 20px auto;
    border-radius: 4px;
    border: 1px solid #D6DEE2;
    background: #FFF;
}

#nlr-wrap input:focus {
    border: 1px solid #00C0F3;
}

#nlr-wrap input:focus {
    outline:none;
}

::placeholder {
    color: #B9C5D3;
    opacity: 1; /* Firefox */
  }
  
::-ms-input-placeholder { /* Edge 12 -18 */
    color: #B9C5D3;
}

.nl-cta {
    color: #333333;
    font-family: 'mallory';
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.02em;
    padding-bottom: 10px;
}

.nl-txt {
    color: #333333;
    font-family: "Noto Serif";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.02em;
}

.nl-btn button {
    display: flex;
    width: 124px;
    height: 42px;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 32px;
    background: var(--blue-2, #0B72B5);
    border: none;
    cursor: pointer;
    color: var(--White, var(--White, #FFF));
    text-align: center;
    font-family: 'mallory';
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.nl-disclaimer {
    width: 65%;
    color: var(--Black, #333);
    font-family: Lato;
    font-size: 9px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4em;
    letter-spacing: 0.02em;
}

.nl-disclaimer a, .nl-disclaimer a:visited, .nl-disclaimer a:hover {
    text-decoration: none;
    color: #0b72b5;
}


/* 320-tab */
@media only screen and (min-width: 320px) and (max-width: 567px){

#nl-landing-form {
    width: 100%;
}

#nl-left {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

#nl-right {
    width: 100%;
}

.nl-cta {
    padding: 20px 0 10px 0;
}

.nl-btn {
    width: 100%;
    padding-bottom: 10px;
}

.nl-btn button {
    display: flex;
    width: 100%;
}

.nl-disclaimer {
    width: 100%;
    padding-bottom: 20px;
}

}