/* newsletter FORM */

.newsletter-register-container{
    position:fixed;
    top:0;
    left:0;
    z-index:10000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
}

.newsletter-register-wrapper{
    background-color: white;
    width:50vw;
    height: fit-content;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius:1rem;
    padding: 1rem;
    position: relative;
}

#close-newsletter-popup{
    font-weight: bold;
    position:absolute;
    top:2%;
    right: 2%;
    font-size:16px;
    cursor:pointer;
}

.newsletter-register-title{
    font-weight: bold;
    margin-top:1.5rem;
    color:#7bc97a;
}

.newsletter-register-wrapper input[type=text]{
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
    border-radius: 0.5rem;
    border:1px solid gray;
    margin-top:0.5rem;
}

.newsletter-register-wrapper input[type=checkbox]{
    margin-right:10px;
    accent-color: #4e89a4;
}

#newsletter-register-submit{
    background-color: #7bc97a;
    color:white;
    display: block;
    padding: 0.5rem 1rem;
    border:none;
    margin-top:1rem;
    border-radius:0.5rem;
    cursor: pointer;
}

.newsletter-register-wrapper input:focus{
    outline: 1px solid #4e89a4;
}