* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

.container {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #fff !important;
    justify-content: center;
}

.hero {
    width: 600px;
    flex: none;
    /* box-shadow: -12px 15px 12px #00000026;
    box-shadow: -12px 15px 12px #2196f32e;
    box-shadow: -12px 15px 12px #3f51b51c; */
    padding: 50px 50px 30px;
    /* border-bottom: 1px solid #000; */
    text-align: center;
}

.container h1 {
    margin-bottom: 15px;
    font-size: 26px;
    font-weight: 900;
    /* color: #00000082; */
}

.container h1 span {
    font-weight: bold;
    color: #000;
}


.container p {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .2px;
    color: #00000082;
}

.hero a {
    display: block;
    text-align: right;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    color: #000;
}

.form-control {
    margin-top: 20px;
}

.input-fields {
    width: 100%;
    align-items: center;
    display: flex;
    padding: 0 14px;
    border: 1px solid #00000026;
    margin-bottom: 20px;
    border-radius: 5px;
}


.input-fields input {
    width: 100%;
    outline: 0;
    /* border: 1px solid #5c555582; */
    border: 0;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 14px 14px 0;
}

.input-fields input ::placeholder {
    color: #00000082;
}

form button {
    border: 0;
    outline: 0;
    font-size: 13px;
    font-weight: 600;
    width: 100%;
    padding: 16px 0;
    border-radius: 5px;
    /* background-color: #F44336; */
    /* background-color: #36f4bd; */
    /* background-color: #eeeeeeb0; */
    background-color:  #3F51B5;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.error {
    font-size: 12px;
    font-weight: 600;
    color: #2196f3;
    color: #f44336;
    text-align: left;
    display: flex;
    flex: none;
}

.error img {
    width: 15px;
}

.errorparent {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.loader {
    margin-right: 10px;
    border: 3px solid #f3f3f3;
    /* Light grey */
    border-top: 3px solid red;
    /* Blue */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: none;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* responsive css design */

@media only screen and (max-width:1600px) {
    .container h1 {
        font-size: 24px;
    }
}

@media only screen and (max-width:1440px) {
    .container h1 {
        font-size: 22px;
    }

    .container p {
        font-size: 16px;
    }

    .hero {
        width: 550px;
    }


}

@media only screen and (max-width:1220px) {
    .container h1 {
        font-size: 20px;
    }

    .hero {
        width: 500px;
    }
}

@media only screen and (max-width:920px) {
    .container h1 {
        font-size: 18px;
    }

    .hero {
        width: 450px;
    }

    .container p {
        font-size: 14px;
    }

    .hero a {
        font-size: 12px;
    }
}

@media only screen and (max-width:620px) {
    .hero {
        padding: 40px 40px 30px;
    }
}

@media only screen and (max-width:620px) {
    .hero {
        padding: 40px 40px 30px;
    }

    .input-fields input {
        font-size: 13px;
    }

    .parent button {
        font-size: 11px;
    }

    form button {
        font-size: 11px;
    }
}

@media only screen and (max-width:520px) {
    .hero {
        width: 90%;
        padding: 40px 40px 30px;
    }
}

@media only screen and (max-width:440px) {
    .hero {
        padding: 30px 30px 20px;
        width: 350px;
    }
}

/* Alhamdulillah done */