/* General styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    height: 100vh; /* Make sure the body takes up the full height of the viewport */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container to center the entire content both horizontally and vertically */
.container {
    width: 100%;
    max-width: 600px; /* Control the max width of the box */
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center; /* Center text inside the container */
}

/* Page title */
h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Diploma box for QR code and activation input */
.diploma-box {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center the content horizontally */
    padding: 20px;
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* Instruction text for the activation code */
.instruction-text {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
    font-weight: normal;
}

/* QR code and its label */
.qr-code {
    text-align: center;
    margin-bottom: 20px;
}

.qr-code img {
    width: 120px;
    height: 120px;
}

.qr-code p {
    margin-top: 10px;
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

/* Input field and button */
.activation-input {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.activation-input label {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: bold;
}

.activation-input input {
    padding: 10px;
    font-size: 16px;
    width: 250px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    text-align: center; /* Center the text inside the input field */
}

.activation-input button {
    padding: 10px 20px;
    background-color: #00b894;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
}

.activation-input button:hover {
    background-color: #01987a;
}

/* Contact information */
.contact-info {
    text-align: center;
    margin-top: 20px;
}

.contact-info p {
    font-size: 14px;
    color: #666;
}

/* Error message */
.error {
    color: red;
    text-align: center;
    margin-top: 20px;
}
/* General styling for the logo */
.logo-container {
    display: flex;
    justify-content: center; /* Center the logo horizontally */
    align-items: center;
    margin: 20px 0; /* Space around the logo */
}

.logo {
    max-width: 150px; /* Control the size of the logo */
    height: auto;
}

