@import url('https://fonts.googleapis.com/css?family=Hind:300,400,500,600,700|Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Rubik:300,300i,400,400i,500,500i,700,700i,900,900i');
:root {
    --family-1 : 'Poppins', sans-serif;
    font-family : var(--family-1);
}
 .grid-auth {
        display : grid;
        grid-template-columns : auto 500px;
        width : 100%;
        min-height : 100vh;
        background : #fff;
        overflow : hidden!important;
    }
    .grid-auth-left {
        height : 100%;
        background : #F8F8F8;
        display : flex;
    }
    @media(max-width : 991px) {
        .grid-auth {
            display : block;
        }
        .grid-auth-left {
            display : none;
        }
    }
    .grid-auth-left img {
        width : 100%;
        height : 100%;
        object-fit : cover;
    }
    .grid-auth-right {
        min-height : 100vh;
        display : flex;
        padding : 40px;
        box-sizing : border-box;
        overflow : auto;
    }
    .grid-auth-right h2 {
        font-size : 22px;
    }
    .grid-auth-right .inner-holder {
        margin : auto;
        min-width : 350px;
    }
    .grid-auth-right .form-group {
      margin-bottom : 15px;
    }
    .form-control {
        height : 45px;
    }
    textarea {
        width : 100%;
        display : block;
        border : 2px solid #111;
        border-radius : 5px;
        height : 70px;
        resize : none;
    }
    .grid-auth-right .form-group label {
      margin-bottom : 5px;
      font-size : 14px;
    }
    .auth-social-links {
        display : block;
        margin : 15px 0;
    }
    .auth-social-links a.btn {
        border-color: #dfdfdf;
        color: #fff!important;
        margin-right : 5px;
        padding: 3px 10px 6px;
    }
    a.btn-facebook {
        background-color: #2d4373;
    }
    a.btn-twitter {
        background-color: #2795e9;
    }
    a.btn-google {
        background-color : #c23321;
    }
    .logo-auth {
        width : 180px;
        margin-bottom : 20px;
    }