:root {
    --header-height: 100px;
}

.header {
    padding: 10px 0;
    height: var(--header-height);
}

img.logo {
    height: 40px;
}

.body {
    height: calc(100dvh - var(--header-height));
    background: url('../images/kantor-2.jpeg');
    background-size: cover;
    background-position: center center;
}

.login-container {
    width: 300px;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.5s ease;
}

.login-container:hover {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
}

hr {
    border: 0;
    border-bottom: 1px solid #AAAAAA;
}