/* QR Registration Form Styles */
.qr-registration-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background:
#fff;
  border-radius:
25px;
}

.qr-registration-container h2 {
    text-align: center;
    margin-bottom: 30px;
}

.qr-scanner-section {
    margin-bottom: 30px;
    text-align: center;
}

#qr-reader {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

#qr-scanner-result {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}

.registration-form-section {
    max-width: 500px;
    margin: 0 auto;
}

.registration-form-section .form-row {
    margin-bottom: 15px;
}

.registration-form-section .form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
   
}

.registration-form-section .form-row input[type="text"],
.registration-form-section .form-row input[type="email"],
.registration-form-section .form-row input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.registration-form-section button {
    cursor: pointer;
    padding: 10px 15px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.registration-form-section button:hover {
    background-color: #005a87;
}

#registration-message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
}

/* Status colors */
.info {
    background-color: #e7f5fe;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.hidden {
    display: none;
}


.registration-form-section {
    background: #fff;
    padding: 15px;
}
.registration-form-section .form-row label {
    color: #000;
}
.registration-form-section {
    max-width: 100%;
}
@media (min-width: 767px) {
    form#qr-registration-form {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4%;
    }
    form#qr-registration-form .form-row {
        width: 48%;
    }
}
.qr-registration-container button#start-scanner {
    height: 60px;
    padding: 0 30px;
    background: #0772ff;
    color: #fff;
    border: 0;
}