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

.icon-banner {
  width: 32px;
}

.body-container {
  /* margin-top: 60px;
  padding-bottom: 40px; */
  height: 100%;
  display: flex;
  /* establish flex container */
  flex-direction: column;
  /* make main axis vertical */
  justify-content: center;
  /* center items vertically, in this case */
  align-items: center;
}

/* In your custom-styles.css file */
.custom-underline {
    /* Ensures the underline is always present */
    text-decoration: underline !important;
}

/* Optional: Keep the color inherited even on hover/focus */
.custom-underline:hover,
.custom-underline:focus {
    color: inherit !important; 
    text-decoration: underline !important;
}

.login-page {
  display: flex;
  justify-self: center;
  max-width: 350px;
  width: 100%;
  justify-content: center;

  gap: 1rem;
}

.login-page .logo {
  max-width: 250px;
}

.login-page .external-login-container,
.login-page .login-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-page .provider-img {
  width: 24px;
}

.login-page .provider-btn {
  gap: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.login-page .divider {
  text-align: center;
  border-bottom: 1px solid #454545;
  line-height: 0.1em;
  margin: 1em
}

.login-page .divider span {
  background: #fff;
  padding: 0 10px;
  color: #454545;
}

.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;
}

.h1-no-bold, .h2-no-bold, .h3-no-bold {
    /* Sets the font-weight to normal (400) or any lighter value you need */
    font-weight: 400 !important; 
}



    /* Custom class to apply a min-width starting at the Medium (md) breakpoint */
@media (min-width: 768px) {
    .min-w-md-400 {
        min-width: 400px !important;
    }
}

/* Custom class to apply a min-width starting at the Large (lg) breakpoint */
@media (min-width: 992px) {
    .min-w-lg-500 {
        min-width: 500px !important;
    }
}

/* Custom class to apply a min-width starting at the Large (lg) breakpoint */
@media (min-width: 1400px) {
    .min-w-xl-700 {
        min-width: 700px !important;
    }
}


    .or-divider {
        display: flex;
        align-items: center;
        margin: 1.5rem 0;
    }

    .or-divider hr {
        flex: 1;
        border-top: 1px solid #e5e7eb;
        margin: 0;
    }

    .or-divider span {
        padding: 0 0.75rem;
        font-size: 0.75rem;
        color: #9ca3af;
    }

    .signup-link {
        color: #a3e635;
        font-weight: 500;
        text-decoration: none;
    }

    .signup-link:hover {
        text-decoration: underline;
    }
    
    
    .size-5 {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain; /* Bootstrap v4 doesn't have an object-fit utility */
}

.border-subtle {
    border-color: #d1d5db !important;
}