#tc-newsletter-form{
    font-family: "Nunito Sans", sans-serif;
    width: 380px;
    max-width: 100%;
    margin: 0 auto;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
span.error{
    color: #dc3232;
    display: none;
    margin-top: 3px;
}
.newsletter-form .form-field label{
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.newsletter-form .form-input{
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    border: none;
    outline: none;
    font-family: "Nunito Sans", sans-serif
}
.submit-button{
    background-color: #4caad8 !important;
    color: #fff !important;
    border: 1px solid #4caad8 !important;
    font-size: 18px !important;
    padding: 15px !important;
    outline: none !important;
	text-align: center !important;
    border-radius: 10px !important;
    cursor: pointer !important;
}
.download-file-section {
    font-family: "Nunito Sans", sans-serif;
    width: 380px;
    max-width: 100%;
    margin: 0 auto;
    color: #fff;
	text-align: center;
}
.download-file-section a {
    background-color: #FFFFFF;
    font-size: 20px;
    letter-spacing: 0.5px;
    color: #27272A;
    fill: #27272A;
    border-style: none;
    align-items: center;
    display: inline-flex;
    padding: 10px 20px;
    text-decoration: none !important;
    outline: none !important;
    border-radius: 10px !important;
    margin-top: 10px;
}
.download-file-section h2{
	color: #fff !important;
}
#tc-newsletter-form.loading .loader {
    display: block !important;
    width: 100px;
    background-image: url(../image/loader.svg);
    height: 100px;
    background-size: contain;
}
.tc-form-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    z-index: 10;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}
#tc-newsletter-form.loading .tc-form-overlay {
    display: flex !important;
}