body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-container {
    max-width: 450px;
    width: 100%;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.login-title {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.upperCase {
    text-transform: uppercase !important;
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.login-link {
    color: #28a745 !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .login-link:hover {
        text-decoration: underline;
        color: #218838 !important;
    }

footer {
    background-color: #343a40;
    color: white;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffc107;
    color: #343a40;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .login-container {
        padding: 1.5rem;
    }
}
