/* Log-in-page-css */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: #000;
}
.log-head-section{
    position: relative;
    width: 100%;
}
.log-head-section h1{
    position: absolute;
    bottom: 300px;
    font-size: 60px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: sans-serif;
    left: 40px;
    line-height: 1.2;
}
.form-wrapper{
    margin: 10px 0px;
}
.container{
    display: flex;
}
.log-head-section img{
    width: 700px;
}
/* form-css */
.log-form-section{
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right:8px solid #123f47;
}
form .ems-logo{
    width: 250px;
}
form a{
    color: inherit;
    text-decoration: none;
}
.button img{
    max-width: 80px;
    width: 100%;
    padding-bottom: 8px;
}
form .button{
    border: 1px solid;
    background-color: #123f47;
    color: #fff;
    border-radius: 5px;
    width: 100%;
    text-align: center;
    padding: 10px 10px;
    font-size: 16px;
    font-family: sans-serif;
}
.log-in-icon{
    margin-top: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #123f47;
}
.bi-box-arrow-in-down{
    font-size: 25px;
    font-weight: 700;
    color: #123f47;
    margin-left: 2px;
}
form a:hover{
    color: #fff!important;
    text-decoration: none;
}
/* changes */
.submit-btn{
    width: 100px;
    padding: 8px 5px;
    background: #123f47;
    color: #fff;
    border: #fff;
    margin-bottom: 10px;
}
/* changes-end */
body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}

.input-container {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  width: 100%;
  margin-bottom: 15px;
}

.icon {
  padding: 10px;
  background: #123f47;
  color: white !important;
  min-width: 50px;
  text-align: center;
}

.input-field {
  width: 100%;
  padding: 10px;
  outline: none;
  font-size: 12px;
}

.input-field:focus {
  border: 2px solid #123f47;
}

/* Set a style for the submit button */
.btn {
  background-color: #123f47;
  color: white;
  padding: 15px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
}
.btn:hover{
    color: #fff!important;
}

.btn:hover {
  opacity: 1;
}
p{
    text-align: center;
    margin-bottom: 0rem!important;
    font-weight: 700;
}
  
 
/* Responsive styling */
@media only screen and (max-width:1024px){
    .log-head-section img {
        width: 600px;
    }
    .log-head-section h1{
        bottom: 250px;
    }
}
@media only screen and (max-width:768px){
    .log-head-section img {
        width: 400px;
    }
    .log-head-section h1 {
        bottom: 150px;
        font-size: 40px;
    }
}
@media only screen and (max-width:412px){
    .container{
        display: block;
    }
    .log-head-section img {
        width: 380px;
    }
    .form-wrapper {
        padding-top: 10px;
    }
    .log-head-section h1 {
        bottom: 130px;
        font-size: 35px;
    }
    form .ems-logo{
        margin-top: 10px;
    }
    form .button {
        margin-bottom: 10px;
    }
}
@media only screen and (max-width:375px){
    .log-head-section img {
        width: 270px;
    }
    .log-head-section h1 {
        bottom: 70px;
        font-size: 30px;
    }
    form .button {
        margin-bottom: 10px;
    }
}

















