/* Override Bootstrap Primary Button (Default Blue → Green) */
.btn-primary {
    background-color: #28a745 !important; /* Green */
    border-color: #28a745 !important;
    color: white !important;
}

.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active {
    background-color: #218838 !important;
    border-color: #1e7e34 !important;
}

/* Override Bootstrap Danger Button (Used for Errors) */
.btn-danger {
    background-color: #dc3545 !important; /* Red */
    border-color: #dc3545 !important;
    color: white !important;
}

.btn-danger:hover, 
.btn-danger:focus, 
.btn-danger:active {
    background-color: #c82333 !important;
    border-color: #bd2130 !important;
}

/* Override Bootstrap Link Colors */
a {
    color: #dc3545 !important; /* Red Links */
    text-decoration: none;
}

a:hover {
    color: #c82333 !important;
    text-decoration: underline;
}

/* Override Bootstrap Alerts */
.alert-danger {
    background-color: #dc3545 !important;
    color: white !important;
    border-color: #bd2130 !important;
}

.alert-success {
    background-color: #28a745 !important;
    color: white !important;
    border-color: #1e7e34 !important;
}

/* Override Form Control Styles */
.form-control {
    border-color: #000 !important; /* Black Borders */
}

.form-control:focus {
    border-color: #28a745 !important; /* Green Focus */
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.5) !important;
}


/* Center Logo */
.logo-container {
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 180px; /* Adjust size */
    height: auto;
}

/* Center Heading */
.card-title {
    font-weight: bold;
    font-size: 1.5rem;
    color: #000;
}

/* Improve Input Fields */
.form-control {
    border-radius: 8px;
    border: 1px solid #000;
}

.form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
}

/* Stylish Buttons */
.btn-primary {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
    color: white !important;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: #218838 !important;
}

/* Alert Box Enhancements */
.alert {
    border-radius: 6px;
    font-size: 0.95rem;
}

/* Improve Links */
.text-danger {
    font-weight: bold;
    text-decoration: none;
}

.text-danger:hover {
    text-decoration: underline;
}
