.page {
    min-height: calc(100vh - 418px);
}

.inner-row {
    min-height: 685px;
}

.submit-row .btn{
    min-width: 100%;
}

.box-content {
    /* box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.1); */
    padding: 30px 28px;
    background: #f7f7f7;
}

.box-content .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    width: 100%;
}

.button-container {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
}

.iipc-register-container {
    margin-top: 15px;
}

/* Duome Loading Spinner */
.duome-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.duome-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 3px solid #f3f3f3;
    border-top: 2px solid var(--iipc-blue-base);
    border-radius: 50%;
    animation: duome-spin 1s linear infinite;
    z-index: 1000;
}

.duome-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 999;
}

@keyframes duome-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}