.anek-gurmukhi-600 {
    font-family: "Anek Gurmukhi", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}


.inter-400 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "slnt" 0;
}


body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    background-color: #ffd814;
    font-family: Inter;
}

.container {
    max-width: 280px;
    margin: 35px auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-family: Anek Gurmukhi;
    font-size: 80px;
    font-weight: 600;
    line-height: 96px;
    text-align: left;
}

p {
    font-size: 15px;
    font-weight: 400;
    line-height: 18.15px;
    text-align: justify;
    margin-bottom: 35px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    display: block;
    margin: 10px 0 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 15px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    border: none;
    outline: none;
    /* height: 30px; */
    box-sizing: border-box;
    font-family: 'Anek Gurmukhi';
}

input::placeholder,
textarea::placeholder {
    color: #000;
    /* padding: 15px; */
    font-family: inherit;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #000;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    height: 55px;
    margin-top: 30px;
    font-weight: 500;
    font-family: inherit;
}

button:hover {
    /* background-color: #0056b3; */
}

#errorMessages {
    color: red;
    margin-top: 10px;
}
#successMessages{
    color: green;
    margin-top: 10px;
}

@media (max-width:786px) {
    h1 {
        font-size: 70px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .container {
        margin: 0 auto;
    }
}