*{
    padding:0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Manjari', sans-serif;
}
.login{
    height: 100%;
}
.login input[type=text],.login input[type=password]{
    width:100%;
    height:40px;
    background-color: transparent;
    border:none;
    border-bottom: 1px solid black;
}
.login input[type=text]:focus,.login input[type=password]:focus{
   border: none;
    color: black;
}
.login input:focus{
    outline-color:transparent;
}
.login  input[type=submit]:hover{
-webkit-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
-moz-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
transition: all 0.4s ease 0s;
}
.bodylog.col-md-5.p-0{
-webkit-box-shadow: 0px 5px 40px -10px rgba(0, 0, 0, 0.26);
-moz-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
transition: all 0.4s ease 0s; 
}
 input[type=submit]{
color: #fff !important;
    text-transform: uppercase;
    text-decoration: none;
    background: #393276;
    padding: 10px 15px;
    display: inline-block;
    border: none;
    transition: all 0.4s ease 0s;
}
.bodylog{
    background:rgba(240, 240, 240, 0);
    border-radius: 50px;
}
.social .fab{
    color:white;
    font-size: 30px;
}
a:hover{
    text-decoration: none;
    color:white;
}
.login h3,span{
    letter-spacing: 1px;
}
.media{
    background-color: white;
    justify-content: center;
    height:50px;
    width: 50px;
    border-radius: 30px;
}
@media(max-width: 1024px) {
    a{
        font-size: 13px;
    }
    input[type=submit]{
        font-size: 13px;
    }
    p#msg{
        font-size: 13px;
        margin-top:2px;
        margin-bottom: 0px;
    }
    
}
@media(max-width:767px){
    p#msg{
        font-size: 13px;
        margin-bottom:0;
    }
    .bodylog.col-md-5.p-0{
        margin: 0px 15px;
    }
}
@media(max-width:425px){
    .image{
        display: none;
    }
}
label{
    padding-left: 0 !important;
}
.field-icon {
  float: right;
  margin-left: -25px;
  margin-top: -25px;
  position: relative;
  z-index: 2;
}
 .bounce-1 {
        animation-name: bounce-1;
        animation-timing-function: linear;
    }
    @keyframes bounce-1 {
        0%   { transform: translateY(0); }
        50%  { transform: translateY(-5px); }
        75% { transform: translateY(-2px); }
        100% { transform: translateY(0px); }
    }
    
    .box {
        animation-duration: 5s;
        animation-iteration-count: infinite;
    }