body {
    background-color: #f0f8ff; /* Bleu clair */
}

.card {
    border: 2px solid #1a73e8; /* Bleu foncé */
    background-color: #ffffff;
    border-radius: 8px;
}

.card-header {
    background-color: #1a73e8; /* Bleu foncé */
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    font-size: 1.5rem;
}

.btn-primary {
    background-color: #fbbc04; /* Jaune */
    border: none;
    color: #000;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #e09e00; /* Jaune plus foncé */
}

input[type="email"],
input[type="password"] {
    border: 1px solid #1a73e8;
    border-radius: 4px;
}

input[type="email"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #fbbc04;
    box-shadow: 0 0 5px #fbbc04;
}
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
