﻿* {
    box-sizing: border-box;
}


html {
    height: 100%;
    font-size: 14px;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--surface-ground);
    margin: 0;
    padding: 0;
    min-height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: var(--gray-100);
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--gray-400);
}

.welcome-page .logo {
    width: 64px;
}

.icon-banner {
    width: 32px;
}

.body-container {
    margin-top: 60px;
    padding-bottom: 40px;
}

.welcome-page li {
    list-style: none;
    padding: 4px;
}

.logged-out-page iframe {
    display: none;
    width: 0;
    height: 0;
}

.grants-page .card {
    margin-top: 20px;
    border-bottom: 1px solid lightgray;
}

.grants-page .card .card-title {
    font-size: 120%;
    font-weight: bold;
}

.grants-page .card .card-title img {
    width: 100px;
    height: 100px;
}

.grants-page .card label {
    font-weight: bold;
}

.login-container {
    border-radius: 56px;
    padding: 0.3rem;
    background: linear-gradient(180deg, var(--primary-color) 10%, rgba(33, 150, 243, 0) 30%);
}

.login-content {
    border-radius: 53px;
}

.p-inputtext-login {
    padding: 1rem;
}

.separator {
    margin: 1.25rem 0;
    display: flex;
    width: 100%;
    position: relative;
    align-items: center;
    justify-content: center;
}

.separator::before {
    border: solid 1px #ced4da;
    border-top: 1px #e5e7eb;
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    width: 100%;
    content: "";
}

.divider-content {
    padding: 0 0.8rem;
    background-color: var(--surface-card) !important;
    z-index: 1;
    display: flex;
}

.separator-tag {
    color: var(--surface-600) !important;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
}

a {
    text-decoration: none
}

.login-min-w-screen {
    min-width: 98vw;
}

.forgot-password {
    color: var(--primary-color)
}

.p-button {
    justify-content: center;
}

.dark-select {
    display: inline-block !important;
    padding: 4px 3px 3px 5px !important;
    margin: 0 !important;
    font: inherit !important;
    outline: none !important;
    line-height: 1.2 !important;
    background: #000 !important;
    color: white !important;
    border: 0 !important;
}