﻿* {
    font-family: 'Muli',sans-serif;
    margin: 0;
    box-sizing: border-box
}

body {
    height: 100vh;
    font-family: 'Muli',sans-serif;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden
}

.bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("Aset/images/Background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    opacity: .9;
    z-index: -1
}

.login-container {
    width: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 10
}

#txtusername {
    text-transform: lowercase
}

.btn:hover {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,.24),0 17px 50px 0 rgba(0,0,0,.19)
}

.kard {
    border-radius: 10px;
    background-color: #b8f5c9;
    margin-bottom: 0 !important
}

.jdl {
    font-family: 'Muli',sans-serif
}

.loading-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,.85);
    z-index: 99;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #28a745;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    animation: spin .8s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.loading-text {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #333
}
