* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}

.container {
    width: 100%;
    height: 100vh;
    background: url("./assets/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#modelBox {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 400px;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    display: none;
    box-shadow: rgba(0, 0, 0, 0.596) 0px 8px 20px;
}

.offer_text {
    padding: 20px 40px 40px 40px;
    font-size: 14px;
    line-height: 22px;
}

.offer_text h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 10px;
}

.offer_text small {
    display: inline-block;
    color: #f82828;
    font-weight: 600;
    margin-bottom: 10px;
}

.offer_text form {
    margin-top: 30px;
    display: flex;
    background: #efefef;
    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: #f82828;
    color: #fff;
    padding: 0 15px;
    border-radius: 4px;
}

.close_icon {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}