@import url('https://fonts.googleapis.com/css?family=Numans');

html,body{
background-image: url("/images/login-background.jpg");
/* Modern fallback color */
background-color: #f5f7fa;
background-size: cover;
background-repeat: no-repeat;
height: 100%;
font-family: 'Numans', sans-serif;
}

.login-container{
height: 100%;
align-content: center;
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card{
height: 420px;
margin-top: auto;
margin-bottom: auto;
width: 400px;
background-color: rgba(44, 62, 80, 0.85) !important;
border-radius: 10px;
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
animation: cardEntrance 0.8s ease-out;
}

.social_icon span{
font-size: 60px;
margin-left: 10px;
color: #f39c12;
}

.social_icon span:hover{
color: white;
cursor: pointer;
}

.card-header {
color: white;
}

.card-body p{
color: white;
}

.card-body h3{
color: #2ecc71;
}

.social_icon{
position: absolute;
right: 20px;
top: -45px;
}

.input-group-prepend span{
width: 50px;
background-color: #3498db;
color: white;
border:0 !important;
border-radius: 4px 0 0 4px;
}

input{
border-radius: 0 4px 4px 0;
transition: all 0.3s ease;
}

input:focus{
outline: none !important;
box-shadow: 0 0 5px rgba(52, 152, 219, 0.5) !important;
border-color: #3498db !important;
}

.remember{
color: white;
}

.remember input
{
width: 20px;
height: 20px;
margin-left: 15px;
margin-right: 5px;
}

.login_btn{
color: white;
background-color: #2ecc71;
width: 100px;
border-radius: 4px;
transition: all 0.3s ease;
}

.login_btn:hover{
color: white;
background-color: #27ae60;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.links{
color: white;
}

.links a{
margin-left: 4px;
color: #3498db;
transition: color 0.3s ease;
}

.links a:hover{
color: #2980b9;
text-decoration: none;
}

.justify-content-center a{
color: #3498db;
transition: color 0.3s ease;
}

.justify-content-center a:hover{
color: #2980b9;
text-decoration: none;
}

.modal-header {
  background-color: #3498db;
  color: white;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
}
