﻿.card {
    background-color: #f9f9f9; /* Light background color */
    border-radius: 10px; /* Rounded corners */
    border: 1px solid #ddd; /* Subtle border */
}

.card-body {
    padding: 2rem; /* Better internal padding */
}

.btn-primary {
    border-radius: 20px; /* Rounded button corners */
    background: linear-gradient(to right, #0066ff, #33ccff); /* Gradient color */
    transition: background 0.3s ease, transform 0.3s ease;
}

    .btn-primary:hover {
        background: linear-gradient(to right, #0055cc, #29a3a3); /* Hover effect */
        transform: translateY(-2px); /* Lift the button slightly on hover */
    }

h4.text-primary {
    font-weight: 700;
    font-size: 1.75rem;
}

footer {
    background-color: #333;
    color: #ccc;
    padding: 1rem 0;
    text-align: center;
}

.form-container {
    border: 1px solid #ddd; /* Subtle border around the form */
    padding: 2rem;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .form-container h2 {
        font-size: 1.75rem;
        font-weight: 700;
        color: #007bff;
        margin-bottom: 1.5rem;
    }

/* Optional: Apply a gradient background to the whole section */
.section-background {
    background: linear-gradient(to right, #f0f4f8, #ffffff);
    padding: 3rem 0;
}

/* Only apply styling to the login image */
.imgdiv {
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loginImg {
    max-width: 100%;
    max-height: 500px; /* Increased height */
    height: auto;
    width: auto;
}
