/* Registration.razor specific styles */
.registration .input-section,
.registration .result-section {
    background-color: #f9f9f9;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.registration input,
.registration select,
.registration button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.registration .generate-button {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

    .registration .generate-button:hover {
        background-color: #0056b3;
    }

.registration .result-display {
    display: flex;
    align-items: center;
}
.centered-title {
    text-align: center; /* Centers the text */
}

.registration .result-input {
    flex: 1;
    margin-right: 10px;
    padding: 5px;
    font-size: 14px;
    width:900px;
}
.registration {
    max-width: 1000px; /* Set your desired maximum width */
    margin: 0 auto; /* Center the div horizontally */
    padding: 15px; /* Optional padding for the content inside */
    background-color: #f9f9f9; /* Keep existing styles */
    border: 1px solid #ccc;
    border-radius: 5px;
}
    .registration .paste-button {
        padding: 7px 12px;
        font-size: 14px;
        border: none;
        background-color: #007bff;
        color: white;
        border-radius: 4px;
        cursor: pointer;
        height: 38px;
        width: 50px;
    }

.registration .copy-button {
    padding: 5px 10px;
    font-size: 14px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    height: 30px;
    width:50px;
}

    .registration .copy-button:hover {
        background-color: #0056b3;
    }
