﻿.welcome-page .logo {
  width: 64px;
}

.icon-banner {
    width: 32px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(85deg) brightness(101%) contrast(101%);
}

.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;
}
/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Login Container */
.login-container {
    width: 150%;
    max-width: 780px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    opacity: 0;
}

    .login-container.fade-in {
        opacity: 1;
    }

    .login-container:hover {
        transform: scale(1.01);
    }

.login-title {
    color: #0d6efd;
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 1rem;
}

.form-label {
    font-weight: 500;
}

.form-control {
    border-radius: 0.4rem;
    padding: 0.6rem 1rem;
}

.form-check-input {
    margin-top: 0.3rem;
}

.btn {
    border-radius: 0.4rem;
    padding: 0.6rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

    .btn-primary:hover {
        background-color: #0b5ed7;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.btn-secondary {
    background-color: #e9ecef;
    border-color: #dee2e6;
}

    .btn-secondary:hover {
        background-color: #ced4da;
        transform: translateY(-2px);
    }

.forgot-password-link {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #0d6efd;
    text-decoration: none;
}

    .forgot-password-link:hover {
        color: #0b5ed7;
    }

/* External Provider Buttons */
.external-provider-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 250%;
    max-width: 100%;
    margin-bottom: 10px;
    border-radius: 0.4rem;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
}

    .external-provider-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .external-provider-btn.google {
        background-color: #fff;
        color: #3c4043;
        border: 1px solid #dadce0;
        font-weight: 500;
        font-size: 14px;
    }

        .external-provider-btn.google:hover {
            background-color: #f7f8f8;
            box-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }


    .external-provider-btn.microsoft {
        background-color: #f2f2f2;
        color: #2d2d2d;
        border: 1px solid #ccc;
    }

    .external-provider-btn.github {
        background-color: #24292e;
        color: white;
        border: none;
    }
    .external-provider-btn.apple {
        background-color: #fff;
        color: #3c4043;
        border: 1px solid #dadce0;
        font-weight: 500;
        font-size: 14px;
    }

        .external-provider-btn.apple:hover {
            background-color: #f7f8f8;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .password-input-container {
            position: relative;
            input 
                {
                     width: 100%;
                     padding-right: 2rem;
                  }

            button {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                right: 0.25rem;
                background-color: transparent;
            }
        }