@import url('https://fonts.googleapis.com/css2?family=Overpass:wght@100;300;400;500;600;700;800;900&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    font-family: 'Overpass', sans-serif;
}

.customer-care-navbar {
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 5px;
}

.navbar-black {
    background-color: black;
}

.navbar-white {
    background-color: whitesmoke;
}

.customer-care-navbar img {
    height: 45px;
    width: auto;
}

.customer-care {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1rem 2rem !important;
}

.customer-care h2 {
    font-weight: bold;
    text-align: left !important;
}

.customer-care .customer-care-heading ul {
    font-size: 16px;
}

.customer-care .customer-care-heading ul li a {
    color: black;
    text-decoration: underline;
}

.customer-care .customer-care-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}

.customer-care .customer-care-form form {
    width: 60%;
    display: flex;
    flex-direction: column;
}

.customer-care .customer-care-form form input {
    padding: 8px 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    outline: none;
    border: 1px solid lightgray;
    font-weight: 500;
}

.customer-care .customer-care-form form textarea {
    padding: 8px 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    outline: none;
    border: 1px solid lightgray;
    font-weight: 500;
}

.customer-care .customer-care-form form button {
    border-radius: 5px;
    background-color: black;
    color: white;
    padding: 10px 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    outline: none;
    border: none;
    cursor: pointer;
}

::placeholder {
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    .customer-care-navbar img {
        height: 40px;
    }

    .customer-care .customer-care-form form {
        width: 90%;
    }
}