* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

.container {
    padding: 80px;
    width: 100%;
    background-color: #fff !important;
    display: flex;
    min-height: 100vh;
}

.left-panel {
    background-color: #fff;
    margin-right: 80px;
    display: flex;
    align-items: center;
}
.errorparent{
    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); }
  }
.parent {
    flex: none;
    width: 550px;
    /* box-shadow: 2px 0px 11px #00000026; */
    /* box-shadow: 1px 3px 21px #3f51b51c; */
    padding: 80px;
}

.container h1 {
    margin-bottom: 15px;
    font-size: 32px;
    font-weight: 900;
    /* color: #00000082; */
}

.container h1 span {
    font-weight: bold;
    color: #000;
}

.container p {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .2px;
    color: #00000082;
}

.container a {
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    /* color: #F44336; */
    color: #000;
}

.form-control {
    margin-top: 40px;
}

.password-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.password-heading a {
    font-size: 14px;
}


.input-fields {
    width: 100%;
    margin-bottom: 20px;
}

.input {
    padding: 0 14px;
    display: flex;
    border-radius: 5px;
    align-items: center;
    border: 1px solid #00000082;
}

.input-fields label {
    display: block;
    text-align: left;
    letter-spacing: .5px;
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 600;
}

.input-fields input {
    width: 100%;
    outline: 0;
    border: 0;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 14px 14px 0;
}

.input-fields input ::placeholder {
    color: #00000082;
}

.rememberme-check {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}

#checkbox {
    margin-right: 12px;
}

.parent 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: #000;
    background-color: #3F51B5;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.parent hr {
    display: block;
    width: 100%;
}

#morelinks {
    display: block;
    margin: -12px auto 30px;
    padding: 2px 6px;
    font-size: 14px;
    font-weight: 600;
    color: #00000082;
    width: fit-content;
    background-color: #fff;
}

.anotherlinks button {
    display: flex;
    background-color: transparent;
    border: 1px solid #00000082;
    color: #000;
    align-items: center;
    padding: 15px 0;
    justify-content: center;
    margin-bottom: 15px;
}

.anotherlinks button img {
    width: 15px;
    margin-right: 15px;
}
/* error */
.error {
    font-size: 12px;
    font-weight: 600;
    color: #2196f3;
    color: #f44336;
    text-align: left;
    display: flex;
    flex: none;
    text-transform: capitalize;
}

.error img {
    width: 15px;
}
/* -----------right panel started here */
.right-panel {
    flex: 1;
    background-position: center;
    background-size: cover;
    /* background-image: url(../images/blogbanner.jpg); */
    display: flex;
    align-items: center;
    justify-content: center;
}

.rightpaneldata {
    width: 500px;
    text-align: center;
}

.rightpaneldata img {
    width: 500px;
}


/* ----------------responsive css design */

@media only screen and (max-width:1600px) {
    .container {
        padding: 70px;
    }

    .left-panel {
        margin-right: 70px;
    }

    .rightpaneldata img {
        width: 450px;
    }

    .container h1 {
        margin-bottom: 12px;
        font-size: 28px;

    }
}

@media only screen and (max-width:1440px) {
    .container {
        padding: 70px;
    }

    .rightpaneldata img {
        width: 400px;
    }

    .container h1 {
        margin-bottom: 12px;
        font-size: 24px;
    }

    .container p {
        font-size: 16px;
    }

    .container a {
        font-size: 14px;
    }

    .rightpaneldata {
        width: 450px;
        text-align: center;
    }
}

@media only screen and (max-width:1220px) {
    .container {
        padding: 50px;
    }

    .container h1 {
        margin-bottom: 12px;
        font-size: 20px;
    }

    .left-panel {
        margin-right: 50px;
    }

    .parent {
        width: 500px;
        padding: 50px;
    }

    .rightpaneldata {
        width: 350px;
    }

    .rightpaneldata img {
        width: 300px;
    }

}

@media only screen and (max-width:1020px) {
    .parent {
        width: 450px;
        padding: 50px;
    }

}

@media only screen and (max-width:920px) {
    .container {
        padding: 40px 0px 50px;
        flex-direction: column-reverse;
        align-items: center;
    }

    .left-panel {
        width: 100%;
        margin-right: 0;
        justify-content: center;
    }

    .parent {
        width: 90%;
        padding: 50px;
    }

    .right-panel {
        margin-bottom: 40px;
        width: 90%;
    }
}

@media only screen and (max-width:620px) {
    .form-control {
        margin-top: 30px;
    }

    .parent {
        padding: 40px;
    }

    .input-fields label {
        font-size: 14px;
    }

    .input-fields input {
        font-size: 13px;
    }

    .container p {
        font-size: 14px;
    }

    .container a {
        font-size: 13px;
    }

    .parent button {
        font-size: 11px;
    }
}

@media only screen and (max-width:440px) {
    .parent {
        width: 350px;
        padding: 30px;
    }

    .input-fields label {
        font-size: 13px;
    }

    .input-fields input {
        font-size: 12px;
    }

    .container h1 {
        font-size: 19px;
    }

    .container p {
        font-size: 13px;
    }

    .container a {
        font-size: 12px;
    }

    /* -----------right panel */
    .rightpaneldata {
        width: 350px;
        flex: none;
    }

    .rightpaneldata img {
        width: 270px;
    }
}


/* finally completed */