  :root {
        --primary-color: #105196;
        --primary-light: rgba(16, 81, 150, 0.1);
        --primary-dark: #0b3e77;
        --text-dark: #222;
        --bg-light: #f0f6fc;
        --bg-gradient: linear-gradient(to right, #e0ecf5, #f7fafd);
    }

    /* body {
        background: url(./images/citc4.jpg) no-repeat center center fixed;
        background-size: cover;
    } */
    body {
    background: url("/images/citc4.jpg") no-repeat center center fixed;
    background-size: cover;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    margin: 0;
}


    .login-card {
        border: none;
        border-radius: 16px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background-color: #ffffff;
        opacity: 0.95;
    }

    .login-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

    .login-card .card-body {
        padding: 2rem;
    }

    .login-card .form-control {
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .login-card .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(16, 81, 150, 0.25);
    }

    .card-title {
        font-weight: bold;
        color: #0b3e77;
        /* background: linear-gradient(to right, #105196, #0b3e77); */
        padding: 12px;
        /* text-shadow: 1px 1px 2px rgba(0,0,0,0.2); */
        /* border-radius: 10px;
        box-shadow: 0 6px 14px rgba(16, 81, 150, 0.3); */
    }

    .animated-border-btn {
        position: relative;
        overflow: hidden;
        z-index: 1;
        border: 2px solid transparent;
        transition: color 0.3s ease, background-color 0.3s ease;
        background-color: var(--primary-color);
        color: white;
        font-weight: bold;
        border-radius: 12px;
    }

    .animated-border-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        border: 2px solid #fff;
        border-radius: 12px;
        z-index: -1;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .animated-border-btn:hover::before {
        transform: scaleX(1);
    }

    .animated-border-btn:hover {
        background-color: var(--primary-color);
        color: #ffff;
    }

    .google-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background-color: #ffffff;
        color: #444;
        font-weight: 600;
        border: 2px solid #d9d9d9;
        border-radius: 12px;
        padding: 10px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    .google-btn:hover {
        background-color: #f1f1f1;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

    .google-btn img {
        width: 20px;
        height: 20px;
    }

    #remove-message {
        animation: fadeOut 3s ease-in-out forwards;
        animation-delay: 4s;
    }

    @keyframes fadeOut {
        to {
            opacity: 0;
            visibility: hidden;
            height: 0;
            padding: 0;
            margin: 0;
        }
    }

    /* Beautiful Input Fields */
.form-control {
    border-radius: 10px;
    border: 1.5px solid #105196;
    background-color: #f9fbfd;
    padding: 8px 15px;
    font-size: 15px;
    transition: all 0.3s ease-in-out;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
    background-color: #ffffff;
    border-color: #105196;
    box-shadow: 0 0 0 4px rgba(16, 81, 150, 0.15);
    outline: none;
}
.form-label {
    font-weight: 600;
    color: #0b3e77;
}
  .breadcrumb a {
    color: #105196;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.breadcrumb a:hover {
    padding-top: 2px;
    text-decoration: underline;
}
