
body{
    font-family: "Poppins", sans-serif;
    /*height: 100vh;*/
}
/*
.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 30px 20px;
}
*//*
.login-form-container{
    width:90%;
    max-width:450px;
}
*/
.login-form{
    text-align:center;
}

.login-form input[type=text],input[type=password] {
    font-size:1.0em;
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: center;
    border-radius:0.25rem;
    width:85%;
    margin:6px auto;
    border: 2px solid #f6f6f6;
    transition: background-color 0.2s linear;
}

.login-form input[type=text]:focus, input[type=password]:focus {
    outline:none;
    background-color: #fff;
    border-bottom: 2px solid #993399;
}

.login-form input[type=text]::placeholder, input[type=password]::placeholder {
    color:#ccc;
}


.login-form-logo{
    text-align:center;
}