body {
    background-color: #f0f0f0;
    font-family: 'Helvetica', 'Lato', sans-serif;
    font-weight: 300;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.logo {
    max-width: 120px;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
}

.form-container {
    background-color: #fff;
    color: #333;
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.8s ease-in-out;
    border-left: 5px solid #0c3762;
    border-right: 5px solid #0c3762;
}

h2, h4 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
    color: #0c3762;
}

.table-container {
    margin-bottom: 20px;
}

.table {
    background-color: #fff;
    border: 2px solid #0c3762;
}

.table th, .table td {
    text-align: center;
}

.table-bordered {
    border: 2px solid #ddd;
}

.list-group {
    margin-top: 20px;
}

.list-group-item {
    font-size: 0.9rem;
    font-weight: 400;
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.list-group-item .badge {
    font-size: 0.9rem;
    font-weight: 700;
    background-color: #d56d00;
}

.btn-primary.btn-lg {
    width: 100%;
    background-color: #0c3762;
    border: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 15px;
    border-radius: 8px;
}

.btn-primary.btn-lg:hover {
    background-color: #082a4d;
}

@media (max-width: 768px) {
    .form-container {
        padding: 20px;
    }

    .logo {
        max-width: 100px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
