::-webkit-input-placeholder {
    color: #B5B5B5;
    font-weight: 300;
}

::-moz-placeholder {
    color: #B5B5B5;
    font-weight: 300;
}

::placeholder {
    color: #B5B5B5;
    font-weight: 300;
}

body {
    background-color: #F9F8FC;
}

.wrapper {
    display: block;
    padding: 20px 30px;
    border-radius: 10px;
    background: #FEFFFE;
    -webkit-box-shadow: 0 10px 34px -15px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0 10px 34px -15px rgba(0, 0, 0, 0.24);
    box-shadow: 0 10px 34px -15px rgba(0, 0, 0, 0.24);
}

#login {
    position: relative;
    display: block;
    width: 100%;
    max-width: 380px;
    margin: 50px auto;
}

#login h1 {
    display: block;
    color: #292B4A;
    font-weight: 500;
    font-size: 25px;
    text-align: center;
}

#login .icon {
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    padding: 20px;
    background: #2B2A32;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 20px 34px -20px rgba(0, 0, 0, 0.24);
}

#login .icon img {
    display: block;
    width: 40px;
    margin: 0 auto;
}

#login table tr td {
    padding: 10px 0;
}

#login input[type=text],
#login input[type=password] {
    display: block;
    width: 100%;
    height: 38px;
    margin: 0;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid transparent;
    border-radius: 4px;
    background: #EEEEEF;
    -webkit-transition: border 0.2s ease-in-out;
    -moz-transition: border 0.2s ease-in-out;
    transition: border 0.2s ease-in-out;
}

#login input[type=text]:focus,
#login input[type=password]:focus {
    border-color: rgba(41, 43, 74, 0.1);
}

#login label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    color: #292B4A;
}

#login button {
    position: relative;
    background-color: #2B2A32;
    height: 38px;
    padding: 8px 15px;
    font-weight: 500;
    color: #FEFFFE;
    border: 0;
    border-radius: 4px;
    width: 100%;
}