@import ("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #F4F7FA !important;
    font-size: 0.875rem;
    font-family: "Poppins", sans-serif;
    font-weight: 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;
}

/*custom*/


.login_section {
    min-height: 100vh;
}

    .login_section .login_block {
        background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.5));
        border-radius: 10px !important;
    }


.custom_form_style .form-label {
    font-weight: 500;
    color: #212529;
}

.custom_form_style .form-control {
    padding: 0.5625rem 0.75rem;
    font-size: 14px;
}

    .custom_form_style .form-control:not(.is-invalid) {
        border-color: #ced4da;
    }

.btn {
    padding: 0.5rem 1.5625rem;
    font-size: 0.875rem;
    border-radius: 3px;
}

.btn_secondary {
    background-color: #5ab44d;
    color: #fff;
    border: solid 1px #5ab44d;
}

/*logout page*/
.logout-header {
    background: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-bottom: solid 1px rgba(58, 85, 159, 0.1);
}

    .logout-header .logo-icon {
        margin-right: 10px;
    }

        .logout-header .logo-icon img {
            max-width: 37px;
        }

    .logout-header .logo-text {
        font-size: 20px;
        font-weight: 600;
        text-transform: uppercase;
        color: #3a559f;
    }

.main-content {
    width: 100%;
    height: calc(100vh - (57px + 38px));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .main-content h4 {
        font-size: 24px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    background: #fff;
    border-top: solid 1px rgba(58, 85, 159, 0.1);
    padding: 0.5rem;
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
}

.validation-summary-errors {
    background: rgb(219 54 69 / 18%) !important;
    border-radius: 4px !important;
    padding: 10px !important;
    margin-bottom: 15px !important;
}

.validation-summary-errors ul {
    list-style: none;
    margin-bottom: 0;
}