* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #f1f1f1;
}

a {
    text-decoration: none;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/* Login page */
#loginPage {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-image: url("../images/backgroundBg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #ffffffc4;
    background-blend-mode: overlay;
    overflow: hidden;
}

    #loginPage .loginHeading h1 {
        font-size: 36px;
        font-weight: 700;
        padding-bottom: 10px;
    }

    #loginPage .formWrapper {
        padding: 20px;
        background-color: #fff;
        box-shadow: 0px 0px 14px #d4d4d4;
        border-radius: 10px;
        width: 30%;
    }

    #loginPage input:focus {
        border-top: 0;
        border-right: 0;
        border-left: 0;
        outline: 0;
    }

    #loginPage .userBtn {
        display: block;
        width: 100%;
        height: 40px;
        line-height: 40px;
        border: 0;
        outline: 0;
        background-color: #008786;
        margin-bottom: 15px;
        color: #fff;
        text-transform: uppercase;
        font-size: 16px;
        letter-spacing: 0.4px;
        border-radius: 5px;
        text-align: center;
    }

.formGrop1 {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    margin-bottom: 15px;
}

    .formGrop1 select {
        display: block;
        width: 100%;
        height: 40px;
        outline: 0;
        border-radius: 5px;
        border: 1px solid gray;
        background-color: #fff;
        color: #000;
        padding: 0 5px;
    }

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.formGrop2 {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

    .formGrop2 input {
        border: 0;
        border-bottom: 2px solid #008786;
        display: inline-block;
        width: 100%;
        height: 40px;
    }

    .formGrop2 label {
        height: 40px;
        width: 70px;
        font-size: 16px;
        color: #000000;
        font-weight: 500;
        display: flex;
        align-items: center;
        border-bottom: 2px solid #008786;
    }

.formGrop3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
}

button.loginBtn {
    display: block;
    width: 110px;
    height: 40px;
    font-size: 16px;
    margin: 20px auto 0 auto;
    outline: 0;
    color: #000000;
    font-weight: 500;
    border-radius: 50px;
    text-transform: uppercase;
    background: transparent;
    border: 2px solid #008786;
    box-shadow: 0px 0px 10px #e6e6e6;
}

.formGrop3 label {
    color: #008786;
}

.shapesImg {
    position: fixed;
    bottom: -30px;
    left: 0;
    overflow: hidden;
}

input#btnLogin {
    border: 2px solid #008786;
    background-color: transparent;
    color: #008786;
    padding: 6px 30px;
    font-size: 18px;
    border-radius: 50px;
    display: block;
    margin: 20px auto;
    box-shadow: 0px 0px 12px #dddddd;
}

/* ======== Media Query ======== */
@media (max-width:1200.99px) {
    #loginPage .formWrapper {
        width: 80%;
    }
}


@media (max-width:767.99px) {
}



@media (max-width:479.99px) {
    #loginPage .formWrapper {
        width: 90%;
    }
}
