body {
    background-color: #e5e5f7;
}

.id-card {
    width: 300px;
    height: 450px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background-color: white;
    overflow: hidden;
    margin: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-front, .card-back {
    padding: 20px;
}

.card-header {
    margin-bottom: 20px;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.company-name {
    font-size: 18px;
    font-weight: bold;
    color: #4a148c;
}

.tagline {
    font-size: 12px;
    color: #7b1fa2;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #e1bee7;
    margin-bottom: 10px;
}

.name {
    font-size: 20px;
    font-weight: bold;
    color: #4a148c;
    margin-bottom: 5px;
}

.title {
    font-size: 14px;
    color: #7b1fa2;
}

.card-footer p {
    font-size: 12px;
    color: #4a148c;
    margin: 2px 0;
}

.card-back {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f3e5f5;
}

.qr-code img {
    width: 80px;
    height: 80px;
    margin: 15px 0;
}

.card-back p {
    font-size: 14px;
    color: #4a148c;
    margin-top: 15px;
}
