/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;600;700;800&display=swap');

/* Global CSS */
*{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #333;	
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Montserrat', sans-serif;
}
.no-padding{
    padding: 0;
}
/* Body */
.background-section{
    background: url(../img/exodus_cigar_association.png);
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box{
    border: 1px solid #777;
    border-radius: 5px;
    background: rgba(0,0,0,.5);
    padding: 20px;
}
.logo{
    display: none;
}
.box h2{
    color: #f2c304;
    font-size: 20px;
}
.box h1 {
    color: #fff;
    font-size: 18px;
    margin: 25px 0 15px;
}
.box p{
    color: #fff;
    font-size: 16px;
}
.box .form-control{
    height: 36px;
    border-radius: 0;
    border: none;
}
.btn-update {
    color: #333;
    background: #f2c304;
    height: 36px;
    border-radius: 0;
    font-weight: 700;
}
.btn-update:hover{
    background: #ffc107;
    color: #fff;
}
.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(0,123,255,0);
}

@media (min-width: 320px) and (max-width: 767px){
    .background-section{
        background: url(../img/mobile-background.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 20% 100%;
        display: block;
        padding: 40px;
        height: initial;
    }
    .logo{
        display: block;
        width: 160px;
        margin: 0 auto 10px;
    }
    .box{
        margin-bottom: 75px;
    }
    .box h2 {
        color: #f2c304;
        font-size: 30px;
        font-weight: 700;
        text-align: center;
    }
    .box h1 {
        color: #fff;
        font-size: 30px;
        margin: 20px 0 15px;
        text-align: center;
        font-weight: 700;
    }
    .box p {
        color: #fff;
        font-size: 22px;
        font-weight: 700;
        text-align: center;
    }
    .box .form-control {
        height: 60px;
        border-radius: 10px;
        border: none;
        font-size: 24px;
    }
    .no-padding{
        padding: 0 15px;
    }
    .btn-update {
        color: #333;
        background: #f2c304;
        height: fit-content;
        display: block;
        width: 100%;
        margin-top: 25px;
        border-radius: 10px;
        font-size: 24px;
        font-weight: 700;
        padding-bottom: 5px;
        height: 55px;
    }

    /*contact from*/
    .membershiplist-content {
        padding: 20px !important;
    }
}