:root {
    --bg-1: #84a2eb;
    --bg-2: #a5c7ff;
    --success: green;
    --blue: blue;
}

.image {
    display: block;
    margin: auto;
    width: 30%;
}


html {
    font-family: "Verdana", sans-serif;
    display: grid;
    place-items: center;
    padding: 24px;
    height: 100%;
    padding: 0px;
    background-size: cover;
    #background: linear-gradient(135deg, var(--bg-1), var(--bg-2)) no-repeat;
}


.blistaLogo {
    display: block;
    margin-left: auto;
}

footer {
    margin: 0px;
    text-align: center;
}

footer a  {
    color: gray;
}


h1 {
    padding-bottom:20px;
}

.container {
    width: 60%;
    border-radius: 10px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 1.08);

    background:
            linear-gradient(180deg, rgba(29, 78, 216, 0.04), rgba(29, 78, 216, 0)),
            white;

    padding: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}


h1{
    margin: 0px;
    font-size: 2em;
    text-align: center;
    font-weight: bold;
}

.title_1{
    margin: 0px;
    font-size: 1.3em;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.title_2{
    margin: 0px;
    font-size: 2em;
    text-align: center;
    font-weight: bold;
    #color:#154E96 ;
    margin-bottom: 20px;
}





.subtitle{
    text-align: center;
    font-size: 1.5em;
    color:#154E96 ;
}

.line {
    width: 10vw;
    height: 2px;
    background-color: #048950;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
}


.card {
    width: 60%;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 40px 32px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--accent-soft);
    color: #bae6fd;
    border: 1px solid rgba(56, 189, 248, 0.22);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.12);
}


.info-text{
    margin: 0px;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 28px 0 24px;
}

.info-box {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px 18px;
    background: rgba(132, 162, 235, 0.1);
    border:solid thin rgba(132, 162, 235, .5);
}

.info-label {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.status-green {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    color: var(--success);
    font-weight: 600;
    font-size: 15px;
}


.status-blue {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    color: var(--blue);
    font-weight: 600;
    font-size: 15px;
}

.status-dot-green {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.10);
}

.status-dot-blue {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.10);
}

@media (max-width: 768px) {
    .container {
        width: 70%;
    }
}