view{
    background: rgb(88,18,66);
    background: linear-gradient(180deg, rgba(33,14,14,1) 0%, rgba(88,18,66,1) 100%);
    width: 100vw;
    height: 100vh;
    display: block;
    color: white;
}

view div div {
    position: absolute;
    width: 400px;
    height: 600px;
    left: calc(50% - 200px);
    top: 75px;
    background-color: inherit;
}

view div div img{
    width: 100px;
    position: absolute;
    left: calc(50% - 40px);
}

.danelogowania{
    margin-top: 150px;
}

.danelogowania label {
    font-size: 20px;
    font-family: 'Arial' !important;
}

.danelogowania input{
    width: 100%;
    margin: 10px 0;
    height: 40px;
    padding: 5px;
    border-radius: 10px;
    font-size: 20px;
    font-family: 'Arial' !important;
}

.danelogowania button[ng-click='log()']{
    width: 150px;
    float: right;
    margin: 10px 0;
    height: 40px;
    padding: 5px;
    border-radius: 10px;
    font-size: 20px;
    font-family: 'Arial' !important;
}

@media only screen and (max-width: 600px) {
    view > div{
        width: 100%;
        background: rgb(88,18,66);
        background: linear-gradient(180deg, rgba(33,14,14,1) 0%, rgba(88,18,66,1) 100%);
        height: 100vh;
    }

    view div div {
        width: 100%;
        height: 100%;
        background-color: inherit;
        padding: 0 20px;
        left: 0;
    }
}