/**
 * Copyright(c) 2024 - 2025 enamentis GmbH.All rights reserved.
 *
 * This software module is the proprietary property of enamentis GmbH.
 * Unauthorized copying, modification, distribution, or use of this software
 * is strictly prohibited unless explicitly authorized in writing.
 *
 * THIS SOFTWARE IS PROVIDED "AS IS," WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT.
 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
 * DAMAGES, OR OTHER LIABILITY ARISING FROM THE USE OF THIS SOFTWARE.
 *
 * For more details, check the LICENSE file in the root directory of this repository.
 */

/* Global reset */
* {
    box-sizing: border-box;
}

/* Global body baseline */
body {
    margin: 0;

    background: radial-gradient(circle at top left, #3f3a6e, #333);
    color: #e2e8f0;
    font-family: system-ui;
}

/* Scrollbars (used globally) */
::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.4);
}

::-webkit-scrollbar-thumb:active {
    background: rgba(0, 0, 0, 0.9);
}

/* Shared logo styles */
.logo-badge {
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    height: 100%;
    width: 100%;

    object-fit: contain;
}

/* Shared subtitle style */
.subtitle {
    font-size: 14px;
    color: #64748b;
}

/* Shared card styles (login card + api card) */
.login-card,
.api-card {
    background: linear-gradient(135deg, #020617, #020617);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 18px;
    box-shadow: 0 8px 8px rgba(15, 23, 42, 0.9);
}
