/* /Layout/MainLayout.razor.rz.scp.css */
.main-container[b-qhnybenii1] {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 100vh;
}

.main-section[b-qhnybenii1] {
    flex: none;
    width: 50vw;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.image-section[b-qhnybenii1] {
    flex: none;
    width: 50vw;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.background-image[b-qhnybenii1] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-image[b-qhnybenii1] {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 200px;
    height: auto;
    z-index: 10;
    pointer-events: none;
}

@media (max-width: 768px) {
    .main-section[b-qhnybenii1] {
        width: 100%;
    }

    .image-section[b-qhnybenii1] {
        display: none;
    }
}
/* /Pages/GetCard/GetCardPage.razor.rz.scp.css */
.card-container[b-dwenzehmjg] {
    margin: 4rem 8rem;
    background-color: white;
}

@media (max-width: 768px) {
    .card-container[b-dwenzehmjg] {
        margin: 1rem 2rem;
    }
}

@media (max-width: 1024px) {
    .card-container[b-dwenzehmjg] {
        margin: 1.5rem 4rem;
    }
}
.card-image[b-dwenzehmjg] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
}

.card-image img[b-dwenzehmjg] {
    width: auto;
    height: auto; 
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.description[b-dwenzehmjg] {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0f034b;
    margin-bottom: 0.5rem;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.btn-container[b-dwenzehmjg] {
    display: inline-block;
    padding: 0.4rem 1.5rem;
    border-radius: 0.25rem;
    background-color: #5d99cc; /* Button background color */
    color: #ffffff; /* Button text color */
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    width: 100%;
}

.btn-container:hover[b-dwenzehmjg] {
    background-color: #4a88b3; /* Darker shade for hover */
    transform: translateY(-2px); /* Slight lift effect */
}

.btn-container:active[b-dwenzehmjg] {
    background-color: #3b6f91; /* Even darker shade for active state */
    transform: translateY(0); /* Reset lift effect */
}

.btn-container:disabled[b-dwenzehmjg] {
    position: relative;
    opacity: 0.3;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.form-container[b-dwenzehmjg] {
    margin-bottom: 1rem;
}
/* /Pages/SendCard/SendCardPage.razor.rz.scp.css */
.card-container[b-j74wjthn7a] {
    margin: 2rem 8rem;
    background-color: white;
}

.card-image[b-j74wjthn7a] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
}

.card-image img[b-j74wjthn7a] {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tabs-container[b-j74wjthn7a] {
    display: flex;
    flex-direction: row;
    margin-bottom: 1rem;
    border: #5d99cc 1px solid;
    border-radius: 0.25rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tab[b-j74wjthn7a] {
    padding: 0.4rem 1rem;
    width: 100%;
    font-size: 0.9rem;
    font-weight: bold;
    color: #5d99cc;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.active-tab[b-j74wjthn7a] {
    background-color: #5d99cc;
    color: white;
}



@media (max-width: 1024px) {
    .card-container[b-j74wjthn7a] {
        margin: 1.5rem 4rem;
    }
}

@media (max-width: 768px) {
    .card-container[b-j74wjthn7a] {
        margin: 1rem 2rem;
    }
}
/* /Pages/TermsAndConditions/TermsAndConditions.razor.rz.scp.css */
.card-container[b-2sc6prbjuu] {
    margin: 2rem;
    background-color: white;
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
    max-width: 100%;
    /* Ensure the container does not exceed the viewport width */
    box-sizing: border-box;
    /* Include padding and borders in the element's width */
}

.back-button[b-2sc6prbjuu] {
    padding-right: 1rem;
    font-size: 1.75rem;
    cursor: pointer;
    color: #0f034b;
}

.header[b-2sc6prbjuu] {
    font-size: 1.75rem;
    font-weight: bold;
    color: #0f034b;
    padding: 1rem;
}

.terms-content[b-2sc6prbjuu] {
    font-size: 0.9rem;
    color: #0f034b;
    white-space: pre-wrap;
    /* Preserve line breaks and wrap text */
    word-wrap: break-word;
    /* Break long words if necessary */
    overflow-wrap: break-word;
    /* Ensure long words wrap properly */
    padding: 1rem;

}

pre[b-2sc6prbjuu] {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}

@media (max-width: 1024px) {
    .card-container[b-2sc6prbjuu] {
        margin: 1rem;
    }
}

@media (max-width: 768px) {
    .card-container[b-2sc6prbjuu] {
        margin: 0.5rem;
    }
}
/* /SharedComponents/Card/CardComponent.razor.rz.scp.css */

.row>*[b-04auznv9w5] {
    flex: 1;
}

.row .input-field[b-04auznv9w5] {
    width: 100%;
}

.description[b-04auznv9w5] {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0f034b;
    margin-bottom: 0.5rem;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.btn-container[b-04auznv9w5] {
    display: inline-block;
    padding: 0.4rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
    background-color: #5d99cc;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    width: 100%;
}

.btn-container:hover[b-04auznv9w5] {
    background-color: #4a88b3;
    transform: translateY(-2px);
}

.btn-container:active[b-04auznv9w5] {
    background-color: #3b6f91;
    transform: translateY(0);
}

.btn-container:disabled[b-04auznv9w5] {
    position: relative;
    opacity: 0.3;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}
/* /SharedComponents/Disclaimer/Disclaimer.razor.rz.scp.css */
p[b-ea7cm2ii3a]{
    text-align: center;
    font-size: 0.8rem;
    color: #0f034b;
    margin-bottom: 0.25rem !important;
}

.link[b-ea7cm2ii3a]{
    color: #5d99cc;
    text-decoration: none;
}
/* /SharedComponents/Document/DocumentComponent.razor.rz.scp.css */
.card-container[b-ia2oien8kv] {
    margin: 2rem 8rem;
    background-color: white;
}

@media (max-width: 768px) {
    .card-container[b-ia2oien8kv] {
        margin: 1rem 2rem;
    }
}

@media (max-width: 1024px) {
    .card-container[b-ia2oien8kv] {
        margin: 1.5rem 4rem;
    }
}

.card-image[b-ia2oien8kv] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
}

.card-image img[b-ia2oien8kv] {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.description[b-ia2oien8kv] {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0f034b;
    margin-bottom: 0.5rem;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.btn-container[b-ia2oien8kv] {
    display: inline-block;
    padding: 0.4rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
    background-color: #5d99cc;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    width: 100%;
}

.btn-container:hover[b-ia2oien8kv] {
    background-color: #4a88b3;
    transform: translateY(-2px);
}

.btn-container:active[b-ia2oien8kv] {
    background-color: #3b6f91;
    transform: translateY(0);
}

.btn-container:disabled[b-ia2oien8kv] {
    position: relative;
    opacity: 0.3;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.file-upload-container[b-ia2oien8kv] {
    display: flex;
    flex-direction: column;
    flex: 1;
    max-width: 100%;
    margin-bottom: 1rem;

    .file-upload {
        background-color: #f3f2f6;
        padding: 1rem;
        border-radius: 0.25rem;
        border: 1px solid #c7c7c7;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.input-label[b-ia2oien8kv] {
    font-size: 0.9rem;
    font-weight: bold;
    color: #0f034b;
    /* Text color */
    margin-bottom: 0.4rem;
}

.drop-zone[b-ia2oien8kv] {
    width: 100%;
    border: 0.1px dashed #5d99cc;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    transition: background-color 0.3s ease;
    padding: 1rem 0rem;
    margin-bottom: 1rem;

    flex-direction: column;
}

.drop-zone.dragging[b-ia2oien8kv] {
    border: 0.4px dashed #155724;
    opacity: 0.3;
}

.drop-zone-wrapper[b-ia2oien8kv] {
    position: relative;
    width: 100%;
    height: 100%;
}

.drop-zone-content[b-ia2oien8kv] {
    position: relative;
    z-index: 1; /* Content stays below the InputFile */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .upload-icon-container {
        padding: 1rem;
        border-radius: 50%;
        width: 4rem;
        height: 4rem;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #f3f2f6;
        margin-bottom: 8px;
    }

    .upload-icon[b-ia2oien8kv] {
        width: 2rem;
        height: 2rem;
    }
}

.upload-text[b-ia2oien8kv] {
    font-size: 0.9rem;
    font-weight: bold;
    color: #0f034b;
}

.upload-button-container[b-ia2oien8kv] {
    display: flex;
    justify-content: center;
    width: 100%;
}

.custom-upload-button[b-ia2oien8kv] {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    color: #5d99cc;
    border: 1px solid #5d99cc;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

.custom-upload-button:hover[b-ia2oien8kv] {
    background-color: #5d99cc;
    color: white;
}

.file-icon[b-ia2oien8kv] {
    font-size: larger;
}

.status-text[b-ia2oien8kv] {
    padding-top: 0.5rem;
    font-size: 0.9rem;
    color: #0f034b;
    margin-bottom: 0.4rem;
}

.selected-file[b-ia2oien8kv] {
    font-size: 0.9rem;
    color: #333;
}
/* /SharedComponents/Error/ErrorComponent.razor.rz.scp.css */
.error-container[b-m89f6d1ymh]{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 2rem;
}

.error-icon[b-m89f6d1ymh] {
   width: 117px;
   height: 108px;
   margin-bottom: 3rem;
}

.error-title[b-m89f6d1ymh]{
    font-size: 1.8rem;
    font-weight: 600;
    color: #10014B;
    text-align: center;
    margin-bottom: 1rem;
}

.error-message[b-m89f6d1ymh]{
    font-size: 1rem;
    color: #10014B;
    text-align: center;
    font-weight: 400;
}   
/* /SharedComponents/InputField/InputField.razor.rz.scp.css */
.input-container[b-z69cmc29w5] {
    display: flex;
    flex-direction: column;
    flex: 1; /* Allow the container to grow/shrink within the row */
    max-width: 100%; /* Prevent it from exceeding its parent's width */
    margin-bottom: 1rem; /* Remove any default margins */
}

.input-label[b-z69cmc29w5] {
    font-size: 0.9rem;
    font-weight: bold;
    color: #0f034b; /* Text color */
    margin-bottom: 0.4rem;
}

.input-field[b-z69cmc29w5] {
    flex: 1;
    padding: 0.4rem;
    font-size: 0.8rem;
    border: 1px solid #c7c7c7; /* Light gray border */
    border-radius: 0.25rem;
    color: #0f034b; /* Text color */
    outline: none;
    width: 100%; /* Ensure the input takes full width */
    box-sizing: border-box; /* Include padding in the width calculation */
}

.input-field[b-z69cmc29w5]::placeholder {
    color: #c7c7c7; /* Hint text color */
}

.input-field:focus[b-z69cmc29w5] {
    border-color: #5d99cc; /* Primary color on focus */
    box-shadow: 0 0 4px rgba(93, 153, 204, 0.5); /* Subtle glow effect */
}

.password-container[b-z69cmc29w5] {
    display: flex;
    flex-direction: column; /* Stack the button above the input */
    align-items: flex-end; /* Align the button to the end (right) */
    position: relative; /* Make the container relative for absolute positioning */
    width: 100%; /* Ensure the container takes the full width */
}

.toggle-password[b-z69cmc29w5] {
    position: absolute; /* Position the button inside the container */
    right: 0.4rem; /* Align the button to the right */
    top: 50%; /* Center the button vertically */
    transform: translateY(-50%); /* Adjust for vertical centering */
    background: none;
    border: none;
    color: #5d99cc;
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0;
}

.toggle-password:hover[b-z69cmc29w5] {
    text-decoration: underline;
}

.cvv-container[b-z69cmc29w5] {
    display: flex;
    flex-direction: column; /* Stack the button above the input */
    align-items: flex-end;
    position: relative;
    width: 100%; /* Ensure the container takes the full width */
}

.cvv-icon[b-z69cmc29w5]{
    position: absolute; /* Position the button inside the container */
    right: 0.4rem; /* Align the button to the right */
    width: 2.5rem; /* Set a fixed width for the icon */
    height: 2.5rem; 
    top: 50%; /* Center the button vertically */
    transform: translateY(-50%);
}

.validation-message[b-z69cmc29w5] {
    color: red !important;
    font-size: 0.8rem !important; 
}

.password-criteria[b-z69cmc29w5] {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    font-size: 0.8rem;
    color: #0f034b;
}

.password-criteria li[b-z69cmc29w5] {
    margin: 0.25rem 0;
    display: flex;
    align-items: center;
}

.password-criteria li.valid[b-z69cmc29w5] {
    color: green;
}

.password-criteria li.valid[b-z69cmc29w5]::before {
    visibility: visible;
}
/* /SharedComponents/Notification/Notification.razor.rz.scp.css */
.notification[b-65e1nfhwox] {
    position: fixed;
    top: 20px;
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust for the element's width */
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fade-in-out-b-65e1nfhwox 3s ease-in-out;
}

.notification.success[b-65e1nfhwox] {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.notification.error[b-65e1nfhwox] {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes fade-in-out-b-65e1nfhwox {
    0% { opacity: 0; transform: translate(-50%, -10px); }
    10% { opacity: 1; transform: translate(-50%, 0); }
    90% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, -10px); }
}
/* /SharedComponents/Success/SuccessComponent.razor.rz.scp.css */
.success-container[b-9bs7poz7b1] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-image[b-9bs7poz7b1] {
    width: 122px;
    height: 95px;
    margin-bottom: 3rem;
}

.document-image[b-9bs7poz7b1] {
    width: 110px;
    height: 110px;
    margin-bottom: 3rem;
}

.success-title[b-9bs7poz7b1] {
    font-size: 1.2rem;
    font-weight: 600;
    color: #10014B;
    text-align: center;
    margin-bottom: 1rem;
}

.success-message[b-9bs7poz7b1] {
    font-size: 0.9rem;
    color: #10014B;
    text-align: center;
    font-weight: 400;
}

.btn-container[b-9bs7poz7b1] {
    display: inline-block;
    padding: 0.4rem 1.5rem;
    margin: 1rem 0rem;
    border-radius: 0.25rem;
    background-color: #5d99cc;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    width: 100%;
}

.btn-container:hover[b-9bs7poz7b1] {
    background-color: #4a88b3;
    transform: translateY(-2px);
}

.btn-container:active[b-9bs7poz7b1] {
    background-color: #3b6f91;
    transform: translateY(0);
}

.btn-container:disabled[b-9bs7poz7b1] {
    position: relative;
    opacity: 0.3;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}
