/* Lock Screen - Full page black background with centered card */

.lock-container {
    width: 100vw;
    height: 100vh;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lock-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px) saturate(160%);
    -webkit-backdrop-filter: blur(10px) saturate(160%);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.45);
    max-width: 22.5rem;
    width: 100%;
    text-align: center;
}

.lock-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.lock-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lock-icon {
    font-size: 3rem;
    color: #6c757d;
}

.lock-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.lock-message {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.lock-user-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.lock-section {
}

/* Button row - flex layout */
.lock-buttons-row {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.lock-buttons {
    width: 100%;
}

.lock-user-label {
    font-size: 0.85rem;
    color: #888;
}

.lock-username {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

/* kill the GWT default bg-image on buttons */
.lock-card .gwt-Button {
    background: none !important;
    background-image: none !important;
}

/* Primary button styling - blue */
.lock-card .btn-primary {
    background-color: #007bff !important;
    color: #fff !important;
    border: none !important;
}

.lock-card .btn-primary:hover {
    background-color: #0056b3 !important;
}

/* Secondary button styling */
.lock-card .btn-outline-secondary {
    background-color: white !important;
    color: #6c757d !important;
    border: 1px solid #ced4da !important;
}

.lock-card .btn-outline-secondary:hover {
    background-color: #f8f9fa !important;
    border-color: #adb5bd !important;
}

/* Password input row */
.lock-password-row {
    width: 100%;
}

.lock-password-row .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 0.375rem;
    border: 1px solid #ced4da;
}

.lock-password-row .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

/* Error message */
.lock-error {
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
}

/* Footer text */
.lock-footer {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    width: 100%;
}

