/* Common Components - Shared UI components used across multiple pages */

/* Container - Used in: Login, Signup, ForgotPassword, ResetPassword, NotVerified, LoginAuth, LinkSent, DoneSignup, _Layout */
.impri-container {
    width: 100%;
    min-height: 100vh;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.impri-container-logo {
    text-align: center;
    padding: 20px;
}

.impri-container-logo p {
    font-size: 24px;
    font-weight: bold;
}

/* Centered Elements - Used in: OrderNDMM, ResetPassword, LinkSent, _PrintReportModal, ResultSection-1, DoneSignup */
.impri-centered-title {
    font-size: 22px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 80px;
}

.impri-centered-content {
    font-size: 24px;
    text-align: center;
    margin-top: 10px;
}

/* Signup Item - Used in: Signup, DeleteAccount, ResetPassword */
.impri-signup-item {
    display: flex;
    flex-direction: column;
    width: 400px;
}

.impri-signup-item label {
    font-size: 20px;
    display: block;
    margin-bottom: 12px;
}

.impri-signup-item img {
    margin-left: 15px;
}

/* Second Container - Used in: ForgotPassword, Signup, PreProfile, LinkSent, DoneSignup */
.impri-second-container {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Modal - Used in: Signup (only one usage, but keeping for potential reuse) */
.impri-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    padding-bottom: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 80%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* Risk Indicators - Used in: NdmmResultView, ResultSection-2 */
.low-risk {
    color: #5e41a8;
}

.high-risk {
    color: #d94b56;
}

/* Label Input One Line - Used in: _RegisterPatientModal (only one, but common pattern) */
.label-input-one-line {
    display: flex;
    margin: 20px;
    align-items: center;
}
