/* Estilos para a página de login - ENVIART */

@import url(https://fonts.googleapis.com/css?family=Open+Sans);

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
    background: #27242b;
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.login-box {
    width: 100%;
    max-width: 320px;
    padding: 15px;
}

.login-box h1 {
    color: #fff;
    text-shadow: 0 0 10px rgba(0,0,0,0.3);
    letter-spacing: 1px;
    text-align: center;
}

.login-input {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 4px;
    box-shadow: inset 0 -5px 45px rgba(100,100,100,0.2), 0 1px 1px rgba(255,255,255,0.2);
    color: #fff;
    padding: 10px 15px;
    font-size: 1rem;
    outline: none;
    transition: box-shadow .5s ease;
}

.login-input::placeholder {
    color: #ccc;
}

.login-input:focus {
    background: rgba(0,0,0,0.4);
    color: #fff;
    box-shadow: inset 0 -5px 45px rgba(100,100,100,0.4), 0 1px 1px rgba(255,255,255,0.2);
    border-color: rgba(0,0,0,0.4);
}

.btn-primary {
    background-color: #4a77d4;
    background-image: linear-gradient(top, #6eb6de, #4a77d4);
    border: 1px solid #3762bc;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
    background-color: #4a77d4;
    border-color: #3762bc;
}
