 * {
    margin: 0 auto;
     padding:0;
}


 


 

 @font-face {
     font-family: 'Roboto';
     font-stretch: PERCENTAGE_RANGE_LOW_TO_HIGH;
    /* Note that font-stretch is a % of normal width */
     font-style: NORMAL_OR_ITALIC;
    /* See note below */
     font-weight: 100 1000;
     src: url('https://web-staging.in/grievance1/fonts/Roboto.woff2') format('woff2');
}
 body {
     font-family: 'Roboto', sans-serif;
     margin: 0;
     display: flex;
     height: 100vh;
}
 .left-side {
     background-color: #F7C800;
     flex: 1;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-direction: column;
}

.left-side img {width: 100%;}
 .pt-50 {
    padding-top: 50px;
}
 .right-side {
     flex: 3;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 20px;
}
 .login-container {
     width: 100%;
     max-width: 450px;
     font-family: 'Roboto', sans-serif;
}
 .error-message {
     color: red;
     font-size: 14px;
     margin-top: 5px;
     position: absolute;
}
 h1 {
     font-size: 50px;
     font-weight: 700;
     margin-bottom: 10px;
}
 p {
     font-size: 28px;
     color: #595050;
     margin-bottom: 30px;
     font-family: 'Roboto', sans-serif;
     font-weight: 300;
}
 .input-container {
     position: relative;
     margin: 45px 0;
}
 .input-field {
     width: 100%;
     padding:16px 22px;
     font-size: 16px;
     border: 1px solid #BCC4CE;
     border-radius: 8px;
     box-sizing: border-box;
}
 .input-field:focus {
    /* border-color: #F7C800;
     */
     outline: none;
}
 .input-label {
     position: absolute;
     left: 16px;
     top: 50%;
     transform: translateY(-50%);
     font-size: 16px;
     color: #aaa;
     transition: all 0.3s ease;
}
 .input-field:focus + .input-label, .input-field:not(:placeholder-shown) + .input-label {
     top: 0px;
     font-size: 14px;
     color: #666666;
     background-color: #fff;
     padding: 0 10px;
}
 .btn-signin {
     width: 100%;
     padding: 22px;
     background-color: #000;
     color: #fff;
     font-size: 16px;
     border: none;
     border-radius: 8px;
     cursor: pointer;
     transition: background-color 0.3s;
}
 .btn-signin:hover {
     background-color: #333;
}
 .footer {
     margin-top: 20px;
     font-size: 14px;
     position: absolute;
     bottom: 40px;
     right: 40px;
}
 

@media (min-width:769px) and (max-width:1024px){
  .left-side {flex:2}

}

@media (min-width:1025px) and (max-width:1700px){
  .left-side {flex:1.5}
  
}