2025-01-29 10:42:02 +05:30

81 lines
1.1 KiB
CSS

.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px;
font-family: Arial, sans-serif;
}
.title {
font-size: 24px;
margin-bottom: 20px;
}
.form {
width: 100%;
max-width: 500px;
}
.form-group {
margin-bottom: 20px;
}
.label {
display: block;
font-size: 16px;
margin-bottom: 8px;
}
.input {
width: 100%;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
}
.video-container {
margin-bottom: 20px;
}
.video {
transform: scaleX(-1);
width: 100%;
max-width: 500px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.capture-button {
width: 100%;
padding: 12px;
font-size: 16px;
color: #fff;
background-color: #007bff;
border: none;
border-radius: 4px;
cursor: pointer;
margin-top: 4px;
}
.capture-button:hover {
background-color: #0056b3;
}
.image-preview {
margin-top: 20px;
text-align: center;
}
.captured-image {
max-width: 100%;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.error-message {
color: red;
font-size: 14px;
margin-top: 5px;
}