﻿html, body {
    height: 100%;
    margin: 0;
}

.login-page {
    min-height: 100vh;
    width: 100%;
    background-image: url('/images/bg-login.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background-color: rgba(146, 171, 215, 0.75); /* azul claro com transparência */
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px); /* efeito vidro (Chrome/Edge) */
    -webkit-backdrop-filter: blur(6px); /* Safari */
}

.login-shell {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.login-prr-footer {
    display: flex;
    width: min(100%, 34rem);
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 22px rgba(23, 32, 51, 0.12);
}

.login-prr-footer img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 4.75rem;
    object-fit: contain;
}

.clinic-login-card {
    background: linear-gradient(180deg, rgba(227, 236, 252, 0.92), rgba(169, 190, 227, 0.86));
    border: 1px solid rgba(255, 255, 255, 0.68);
    color: #172033;
}

.clinic-login-title h3 {
    display: inline-block;
    position: relative;
    margin: 0;
    color: #172033;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0;
}

.clinic-login-title h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.65rem;
    width: 5.5rem;
    height: 0.22rem;
    border-radius: 999px;
    background: #93b52f;
    transform: translateX(-50%);
    box-shadow: 0 0.4rem 1rem rgba(147, 181, 47, 0.28);
}

.clinic-login-logo {
    width: 80px;
    height: 80px;
    padding: 0.35rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(23, 32, 51, 0.14);
}

.admin-badge {
    display: inline-block;
    background-color: #93b52f; /* verde */
    color: #f5f5f5; /* letras brandas */
    padding: 7px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0;
    box-shadow: 0 8px 18px rgba(147, 181, 47, 0.26);
}
