body {
    font-family: Arial, sans-serif;
    background-color: #b1f2a7;
}

form {
    background-color: #eef2ee;
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 8px;
}
#selfieCanvas, #businessCardCanvas {
    width: 100%;
    border-radius: 13px;
    margin-top: 20px;
}


h2 {
    text-align: center;
}

label {
    display: block;
    margin-top: 15px;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
}

button {
    margin-top: 20px;
    padding: 10px;
    width: 100%;
    background-color: #047e29;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

button:hover {
    background-color: #357ae8;
    cursor: pointer;
}

.required {
    color: red;
}

.error-message {
    color: red;
    font-size: 12px;
}

#selfieCameraContainer,
#businessCardCameraContainer {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

video {
    max-width: 100%;
    border-radius: 8px;
    margin-top: 10px;
}

canvas {
    display: none;
}
