/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.5;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
    color: inherit;
    border: none;
    background: none;
}

button {
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem; }

.block.newsletter {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.block.newsletter .field.newsletter {
    float: none;
    max-width: inherit;
}

.block.newsletter .field.newsletter {
    float: none!important;
    display: flex;
    width: 100%;
    max-width: 100%!important;
    flex-direction: column;
}

.block.newsletter .field .control {
    width: 100%;
    display: block;
    position: relative;
}

.block.newsletter input {
    margin: 0;
    font-size: 16px;
    height: auto;
    width: 100%;
    max-width: 100%;
    display: block;
    padding: .8rem 2rem;
    /* padding: var(--spacing-2) var(--spacing-4); */
    /* border: 1px solid var(--text-light); */
    /* border-right: none; */
    /* border-radius: var(--radius-sm) 0 0 var(--radius-sm); */
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    text-align: center;
    margin-bottom: 1rem;
}

.block.newsletter button.action.subscribe.primary {
    background-color: #0f95e6;
    color: var(--white);
    padding: .5rem 3rem;
    width: 100%;
    font-size: 15px;
}

.block.newsletter .form.subscribe > .actions {
    float: none;
    width: fit-content;
    display: block;
}

.block.newsletter .field .control:before {
    top: 14px;
    z-index: 9;
    display: none;
}