:root {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
}

body {
    height: 100%;
    width: 100%;
    background-color: #f8f9fa;
    background-image: url('/images/bg-signin.webp');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.login-container,
.login-container * {
    position: relative;
    z-index: 3;
}

.login-container {
    width: clamp(325px, 24vw, 900px);
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    color: #fff;
    border-radius: 12px;
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.backdrop-filter {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(21, 24, 72, 0.9), rgba(0, 142, 175, 0.5));
    height: 100vh;
    width: 100vw;
}

.intro {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.form-label-1 {
    margin-bottom: 0.75rem;
}

a {
    color: #dfc294;
    text-decoration: none;
}

a:hover {
    color: #dfb066;
}

.clicked {
    color: #151848 !important;
}

/* Custom alert styling for lock message */
.alert-danger {
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #fff;
}

.alert-danger strong {
    color: #ff6b6b;
}

/* Disable form during penalty */
.form-disabled {
    opacity: 0.6;
    pointer-events: none;
}