* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    height: 100%;
    background-color: black;
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-image: url('/resources/images/bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

h1 {
    text-align: center;
    margin: 20px 5px;
}

.wrapper {
    height: 100%;
    width: 100%;
}

#txt_uname, #txt_pwd, #login {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 7px;
    margin-bottom: 20px;
    background-color: rgb(3, 58, 100);
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 15px;
}

#login {
    background-color: #c30204;
    -webkit-clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    padding: 12px 35px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: none;
    cursor: pointer;
}

.loginbox {
    background: #031f35;
    padding: 0 15px;
    width: fit-content;
    height: fit-content;
    position: absolute;
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 10px 10px #042743;
}

.loginbox img {
    width: 28px;
    position: absolute;
    z-index: 10;
    margin: -52px 70px;
    -webkit-filter: invert(0.8);
    filter: invert(0.8);
}

.alrt {
    display: inline !important;
    text-align: center;
    background-color: #ff3838;
    width: fit-content;
    padding: 10px;
    border-radius: 10px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, 0);
}