body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc; /* Tailwind's gray-50 */
}        
.brand-dark-blue {
    background-color: #1e295a; /* A custom dark blue */
}        
.brand-primary-button {
    background-color: #4f46e5; /* Indigo-600 */
    color: white;
    transition: background-color 0.3s ease;
}
.brand-primary-button:hover {
    background-color: #4338ca; /* Indigo-700 */
}
.brand-primary-button:disabled {
    background-color: #a5b4fc; /* Indigo-300 */
    cursor: not-allowed;
}
.brand-secondary-button {
    background-color: #e5e7eb; /* Gray-200 */
    color: #1f2937; /* Gray-800 */
    transition: background-color 0.3s ease;
}
.brand-secondary-button:hover {
    background-color: #7d9bc9; /* Gray-300 */
}
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}        
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
/* Styles for smooth transitions on dropdown and modal */
.fade-enter-active, .fade-leave-active {
    transition: opacity 0.3s ease;
}
.fade-enter-from, .fade-leave-to {
    opacity: 0;
}
.logo img {    
    width: 215px;
    padding-left: 25px;
}
.login-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}
.content-text-2 {
    text-align: center;
    color: darkgrey;
    text-size-adjust: 5px;
}
.login-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.login-text {
    width: 100%; 
    margin-bottom: 20px; 
    text-align: center;
    
}
.loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #1e295a;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}