body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 16px;
    background-color: #616265;
    color: white;
    font-family:  -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.flex {
    display: flex;
    flex-direction: row;
}

.flex.vertical {
    flex-direction: column;
}

.flex.centered {
    justify-content: center;
    align-items: center;
}

.flex.use-space {
    flex-grow: 1;
}

.flex.no-shrink {
    flex-shrink: 0;
}

.root {
    align-items: flex-start;
    height: 100vh;
    overflow: auto;
    background: linear-gradient(135deg, rgba(67, 43, 128, 0.85) 0%, rgba(33, 158, 188, 0.7) 100%), url(./login_bg_2026.avif) center ;
    background-size: cover;
    padding: 1rem;
    box-sizing: border-box;
}

.portal-select {
    background-color: white;
    padding: 2rem;
    color: #253549;
    border-radius: 1rem;
    max-width: 22rem;
    margin: auto;
}

.portal-select .description {
    text-align: center;
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.logo {
    margin-bottom: 2rem;
    text-align: center;
}

.logo img {
    width: 100%;
}

.portal-links {
    margin-bottom: 4rem;
}

.portal-link {
    display: block;
    padding: 0.9rem;
    text-decoration: none;
    color: white;
    font-size: 1.125rem;
    font-weight: bold;
    text-align: center;
    background-color: rgb(27 116 173);
    border-radius: 1rem;
    margin: 1rem;
    transition: background-color 0.3s ease;
}

.portal-link:hover {
    background-color: rgb(16, 70, 104);
}

.portal-link:active {
    background-color: rgb(16 178 227);
}

.footer {
    font-size: 0.75rem;
    color: #798a8e;
    text-align: center;
}