* {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    background: #fff;
    color: #e5e7eb;

    overflow: hidden;
}

nav {
    width: 100%;
    padding: 12px 24px;
    box-sizing: border-box;
    display: flex;
    justify-content: start;
    background: #211f1f;
    margin-bottom: 24px;
}

nav img {
    height: 80px;
}

.card {
    background: #fff;
    border: 2px solid #3741515c;
    border-radius: 16px;
    padding: 24px 28px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

h1 {
    font-size: 1.4rem;
    color: #020617;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
    color: #000000;
}

input,
select {
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #000000;
    background: #ffffff;
    color: #020617;
    font-size: 0.9rem;
}

input:focus,
select:focus {
    outline: 2px solid #d30000;
    outline-offset: 1px;
    border-color: transparent;
}

.field {
    margin-bottom: 1rem;
}

button {
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    background-color: #211f1f;

    color: #ffffff;

    transition: all 0.2s ease-in-out;
}

button:hover {
    background-color: #d30000;
}

button:disabled {
    opacity: 0.6;
    cursor: default;
}

.error {
    display: none;
    margin-bottom: 0.8rem;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    color: #fa0000;
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.4);
}

.info {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.3rem;
}

#looker-container {
    /* display: none; */
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100vh;
}
#looker-container::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4%;
    background: #ffffff;
    z-index: 10;
    pointer-events: auto;
}

#looker-frame {
    width: 90%;
    height: 100%;
    border: none;
}

.small {
    font-size: 0.8rem;
}