#login,
#pwd {
    border-radius: 18px;
}

/* Ensure the container fits the viewport */
.main-container {
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align the card to the top */
    padding-top: 50px; /* Add some padding to control the vertical position */
}

.card {
    max-width: 600px;
    background-color: GhostWhite;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

button {
    font-size: 0.9rem; /* Adjust button font size */
    color: white !important; /* Force text color to white */
}


/* Default SVG container size */
.svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    margin: 0 auto; /* Center the container */
}

/* Adjustments for small screens */
@media (max-width: 576px) {
    .main-container {
        padding: 10px; /* Add padding for smaller screens */
        padding-top: 30px; /* Reduce top padding for smaller screens */
    }

    .card {
        padding: 15px; /* Reduce padding for smaller screens */
    }

    .logo-image-login {
        width: 180px; /* Reduce logo size */
        height: auto;
    }

    h4 {
        font-size: 1.1rem; /* Adjust font size for smaller screens */
    }

    .form-control {
        font-size: 0.9rem; /* Adjust input font size */
    }

    button {
        font-size: 0.9rem; /* Adjust button font size */
    }

    .svg-container {
        width: 100px; /* Reduce container width for smaller screens */
        height: 100px; /* Reduce container height for smaller screens */
    }

    h5 {
        font-size: 1rem; /* Adjust font size for smaller screens */
    }
}