@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    color: #000000;
    font-size: 14px;
    line-height: 1.6;
    font-family: Arial, Helvetica, sans-serif;
}
/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}
input { -webkit-user-select:text;}

.postcode {
    max-width: 600px;
    margin: 50px auto 0;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}
.postcode-head-left h4{
    font-weight: 600;
    margin: 0;
    font-size: 18px;
    max-width: 80%;
    font-family: museo-sans, sans-serif !important;
    font-weight: 600;

}
.postcode-body {
    margin: 20px 0;
    padding: 50px;
    border-radius: 5px;
    background: rgb(37 181 112 / 10%);
    text-align: center;
    position: relative;
}

.postcode-body:after {
    content: "";
    background: url(../img/uk-map.svg) repeat center center / 60%;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.15;
}
#fupForm {
    position: relative;
    z-index: 1;
}
.alert {
    padding: 8px 10px;
    font-size: 14px;
}
.postcode-body label {
    font-size: 16px;
    color: #6d3a5d;
    font-weight: 600;
}
.btn-primary {
    color: #fff;
    background-color: #6d3a5d;
    border-color: #6d3a5d;
}

.btn-primary:hover {
    color: #fff;
    background-color: #6d3a5d;
    border-color: #6d3a5d;
}
.brish-cream-tea .postcode-body label {
    color: #8b171a;
}
.postcode-body #postcode {
    font-size: 15px;
    padding: 13px 15px;
    height: 50px;
    border: 0;
}
.form-control:focus {
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
}
.postcode-body button {
    padding: 8px 25px;
    font-weight: 500;
}
.postcode-foot-right img {
    width: 100%;
}
.postcode-foot-left {
    max-width:300px;
}
.postcode-foot-right {
    flex: 0 0 220px;
}
.postcode-foot-left h5 {
    margin: 0;
    font-size: 18px;
    max-width: 80%;
}
.invalid-feedback{
    margin-top: 15px;
    font-size: 12px;
}
.btn-check:focus+.btn-primary, .btn-primary:focus, .btn-primary:active:focus {
   box-shadow: none;
}
.valid-feedback {
    margin-top: 15px;
    font-weight: 600;
    font-size: 18px;
}
.brish-cream-tea .btn-primary {
    background-color: #8b171a;
    border-color: #8b171a;
}

/* responsive */
@media (max-width:699px) {
    .postcode {
        max-width: 100%;
        margin: 0;
        border: 0;
        border-radius: 0;
    }
    .postcode-head-left h4 {
        margin: 0;
        font-size: 18px;
        max-width: 80%;
        font-family: museo-sans, sans-serif !important;
        font-weight: 600;
    }
    .postcode-body {
        padding: 25px; 
    }
    .postcode-foot {
        flex-direction: column;
        text-align: center;
    }
    .postcode-foot-left h5 {
        font-size: 14px;
        max-width: 84%;
        margin: 0 auto 20px;
    }
    .postcode-foot-right {
        flex: 1;
        max-width: 100%;
    }
    .postcode-foot-right img {
        max-width: 200px;
    }
    .postcode-body label {
        font-size: 16px;
        /* max-width: 65%; */
        color: #6d3a5d;
        font-weight: 600;
    }
}