﻿/**
    This CSS file is purely used for identity stuff, like login, forgot password, etc.
*/

html {
    height: 100%;
    min-height: 100%;
}

body {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)),url('/img/auth_bg.jpg');
    min-height: 100%;
    background-size: cover !important;
    background-position: center;
    backdrop-filter: blur(5px);
}

.back-to-login {
    margin: 0 0 1em 0;
}

.container-tight {
    max-width: 25rem;
}

@media (max-width: 532px) {
    .container-tight {
        max-width: 95%;
        padding: 0;
        margin: auto;
        height: 95%;
    }

    .card {
        height: 95%;
    }
}