/* Custom styles for a clean, professional High-Contrast LIGHT Theme with Darker Card */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1a73e8; /* Deep Blue Background */
    color: #212529; /* Default text is dark */
}

/* The card is now a darker gray for contrast */
.card {
    background-color: #e0e0e0; /* Medium-dark gray card background */
    color: #212529;
    border: 5px solid #212529;
    border-radius: 16px; /* Slightly larger border-radius for modern feel */
    max-width: 950px; /* Increased max-width for more content space */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); /* More pronounced shadow */
}

/* Inner content background remains white for strong contrast */
.card-inner-content {
    background-color: #ffffff;
    padding: 4rem !important; /* Increased padding */
    border-radius: 12px;
}

/* Accent color: Changed to Dark Blue */
.text-primary-blue {
    color: #1a73e8 !important; /* A darker, professional blue */
}

/* Card Text Overrides */
.text-secondary {
    color: #495057 !important; /* Slightly darker secondary text for better readability */
}
.text-dark {
    color: #212529 !important;
}
.text-muted {
    color: #6c757d !important;
}

/* Button uses the new Dark Blue accent */
.btn-primary-blue {
    background-color: #1a73e8; /* Dark Blue */
    border-color: #1a73e8; /* Dark Blue */
    font-weight: 600 !important; /* Make button text bolder */
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 6px rgba(26, 115, 232, 0.3); /* Subtle button shadow */
}
.btn-primary-blue:hover {
    background-color: #145cb5; /* Slightly darker hover */
    border-color: #145cb5;
    transform: translateY(-2px); /* Lift button on hover */
    box-shadow: 0 8px 12px rgba(26, 115, 232, 0.4); /* Enhanced shadow on hover */
}

/* Button uses the new Dark Blue accent */
.btn-login {
    background-color: #1a73e8; /* Dark Blue */
    border-color: #1a73e8; /* Dark Blue */
    font-weight: 600 !important;
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 6px rgba(26, 115, 232, 0.3);
    width: 100%; /* Full width button */
}
.btn-login:hover {
    background-color: #145cb5; /* Slightly darker hover */
    border-color: #145cb5;
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(26, 115, 232, 0.4);
}

/* Feature/Icon Color: Using the new Dark Blue accent */
.text-feature-icon {
    color: #1a73e8 !important;
    width: 28px; /* Slightly larger icons */
}

/* Border separator color */
.border-secondary-subtle {
    border-color: #dee2e6 !important;
}

/* Custom Badge Style for technology stack */
.badge-tech {
    background-color: #f1f3f4; /* Light background for the badge */
    color: #212529; /* Dark text */
    font-weight: 600;
    padding: 0.5em 0.8em;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem; /* Added margin for wrapping badges */
    border-radius: 0.375rem;
    border: 1px solid #dee2e6;
}

/* Form styling for a cleaner look */
.form-control:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 0.25rem rgba(26, 115, 232, 0.25);
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}