﻿:root {
    --fv-indigo: #4338ca;
    --fv-indigo-dark: #312e81;
    --fv-background: #f8f9fc;
    --fv-card: #ffffff;
    --fv-border: #e5e7eb;
    --fv-text: #1f2937;
    --fv-muted: #6b7280;
}

body {
    background: var(--fv-background);
    font-family: Inter, Segoe UI, sans-serif;
    color: var(--fv-text);
}

.fv-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
}

.fv-card {
    background: white;
    border: 1px solid var(--fv-border);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
}

.card-header {
    display: flex;
    gap: 24px;
}

.icon-circle {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(67,56,202,.08);
}

.card-icon {
    width: 30px;
    height: 30px;
    color: var(--fv-indigo);
}

h2 {
    margin: 0 0 20px;
    font-size: 28px;
    font-weight: 600;
    color: #25305c;
}

.subscription-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

.metric {
    position: relative;
}

    .metric:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -16px;
        top: 0;
        height: 100%;
        width: 1px;
        background: #ececec;
    }

    .metric label {
        display: block;
        color: var(--fv-muted);
        font-size: 14px;
        margin-bottom: 6px;
    }

    .metric span {
        font-size: 20px;
        font-weight: 500;
    }

.tenant-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 32px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        margin-bottom: 8px;
        color: var(--fv-muted);
        font-size: 14px;
    }

input,
select {
    height: 48px;
    padding: 0 16px;
    border: 1px solid var(--fv-border);
    border-radius: 8px;
    font-size: 15px;
    background: white;
}

    input:focus,
    select:focus {
        outline: none;
        border-color: var(--fv-indigo);
        box-shadow: 0 0 0 3px rgba(67,56,202,.15);
    }

button {
    height: 48px;
    padding: 0 28px;
    border: none;
    border-radius: 8px;
    background: var(--fv-indigo);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
}

    button:hover {
        background: var(--fv-indigo-dark);
        transform: translateY(-1px);
    }

.card-watermark {
    position: absolute;
    right: 24px;
    top: 24px;
    opacity: 0.04;
}

background:
linear-gradient( 135deg, #4338ca, #4f46e5 );

.success-icon {
    background: #e8f8ec;
    color: #008a2e;
    font-size: 48px;
    font-weight: bold;
}

.actions {
    margin-top: 32px;
}

.button-primary {
    display: inline-block;
    background: #4f46e5;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
}


.card {
    display: flex;
    gap: 32px;
    background: white;
    border-radius: 24px;
    padding: 32px;
    margin-top: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.card-icon {
    flex-shrink: 0;
}

.card-factvault-logo {
    flex-shrink: 0;
    width: 225px;
}

.card-content {
    flex-grow: 1;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

    .summary-grid label {
        display: block;
        font-size: .9rem;
        color: #666;
        margin-bottom: 8px;
    }

    .summary-grid div div {
        font-size: 1.2rem;
        font-weight: 600;
    }

.primary-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: #4c3db8;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
}