.newsletter-container {
    text-align: center;
    margin: 20px auto;
    max-width: 822px;
    padding: 0 15px;
}

.newsletter-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff !important;
}

.custom-newsletter-wrapper {
    position: relative;
    width: 100%;
    border-radius: 0px 50px;
    background: #FFFFFF;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
    height: 56px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.custom-newsletter-wrapper input[type="email"] {
	margin-top: 15px;
    border: none;
    outline: none;
    background: transparent;
	background-color: unset !important;
	box-shadow: none !important;
    width: 100%;
    font-size: 18px;
    color: #000;
    padding: 0 20px;
}

.custom-newsletter-wrapper input[type="email"]::placeholder {
    color: var(--Goldenrod);
}

.newsletter-submit {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--Goldenrod);
    font-size: 25px;
    cursor: pointer;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .newsletter-title {
        font-size: 22px;
    }

    .custom-newsletter-wrapper {
        width: 100%;
        height: 40px;
        border-radius: 0 50px 0 50px;
        font-size: 14px;
        padding: 0 0 0 40px;
    }

    .newsletter-submit {
        right: 10px;
		font-size: 20px;
		top: 45%;
    }
	
	.custom-newsletter-wrapper input[type="email"] {
		margin-top: 19px;
	}
}
