﻿.login-form {
    width: 370px;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 5px 15px 0 #2f2e2e;
    /*border: 1px dashed #ff7f01;*/
    border-radius: 5px;
}
.logo-name
{
    width:100%;
    text-align:center;
}
    .logo-name img
    {
        width:50%;
    }
body {
    background: #eaeaea;
}
.btn-login {
    width: 100%;
    background: linear-gradient(#0083a5,#09a6ce);
    color: #ffffff;
    font-size: 27px;
    font-family: arial;
    padding: 4px;
    border: 1px solid #fff;
    transition: all .3s ease-in-out;
    box-shadow: none !important;
}
    .btn-login:hover {
        background: linear-gradient(#09a6ce,#0083a5);
        color:#fff;
    }
.form-control {
    border: 1px solid #bdbdbd;
    box-shadow:none !important;
}
    .form-control:focus {
        border: 1px solid #09a6ce;
    }
label {
    display: inline-block;
    margin-bottom: .5rem;
    color: #7d7d7d;
}