/* style.css */

/* Global styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #448AFF;
    color: white;
    text-align: center;
    padding: 10px 0;
}

.navbar {
    background-color: #448AFF !important;
}

.navbar-brand, .nav-link {
    color: white !important;
}

.nav-link:hover {
    color: #f0f0f0 !important;
}

/* Form styles */
.form-signin {
    max-width: 400px;
    margin: auto;
    padding: 15px;
    background-color: #ffffff;
    border: 1px solid #ced4da;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1rem;
}

/* Dashboard styles */
.card {
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-header {
    background-color: #448AFF;
    color: white;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card-text {
    font-size: 1rem;
    color: #495057;
}

.btn-primary {
    background-color: #448AFF;
    border-color: #448AFF;
}

.btn-primary:hover {
    background-color: #2979FF;
    border-color: #2979FF;
}

/* Responsive utilities */
@media (max-width: 768px) {
    .form-signin {
        padding: 10px;
    }
}
