*{
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
    box-sizing: border-box;
}

#modelBox{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 350px;
    background: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    display: none;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.offer-text{
    padding: 20px 40px 40px 40px;
    font-size: 14px;
    line-height: 22px;
}
.offer-text h2{
    display: inline-block;
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
}
.offer-text h5{
    display: inline-block;
    color: #6b7688;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}
.offer-text form{
    margin-top: 20px;
    display: flex;
    background: #edf2f8;
    border-radius: 4px;
}
.offer-text form input{
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 12px 10px;
}
.offer-text form button{
    border: 0;
    outline: 0;
    cursor: pointer;
    background: #313bac;
    color: #fff;
    padding: 0 15px;
    border-radius: 4px;
}
.close-icon{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}