/* Import Bootstrap Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #007bff, #6610f2);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 500px;
    margin: auto;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

h2 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

p {
    font-size: 16px;
    color: #555;
}

.form-select,
.form-control {
    border-radius: 5px;
    height: 45px;
    font-size: 16px;
    margin-bottom: 15px;
}

.form-check-label {
    font-size: 16px;
}

button {
    background: linear-gradient(135deg, #007bff, #6610f2);
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 5px;
    width: 100%;
    transition: 0.3s ease-in-out;
}

button:hover {
    background: linear-gradient(135deg, #6610f2, #007bff);
}

.list-group-item {
    font-size: 16px;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #6610f2);
    border: none;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6610f2, #007bff);
}

.text-success {
    color: #28a745 !important;
}

.shadow {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }
}
