

body {
    background-color: aliceblue;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.card {
    margin: 100px auto;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    background-color: white;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-header {
    background-color: cornflowerblue;
    text-align: center;
    padding: 20px;
    border-top: 15px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.card-header img {
    max-width: 80%;
    height: auto;
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.card-header img:hover {
    transform: scale(1.05);
}

.card-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0;
}

.card-body {
    padding: 20px;
}

.form-label {
    font-weight: normal;
    color: #555;
}

.form-control {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.card-footer {
    padding: 15px;
    text-align: center;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


