.container-fluid {
    background-color: #f0f0f0;
}
.content-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 2rem 6rem;
    border-radius: 0.5rem;
    text-align: center;

    width: 90vw; /* More responsive width */
    max-width: 500px; /* Maximum width to prevent overly wide boxes on large screens */
    height: auto; /* Let height be dynamic */
    min-height: 80vh; /* Minimum height */
    
}

.beginner-info-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 0.5rem;
}

.beginner-info-icon {
    width: 24px;
    height: 24px;
    margin-right: 0.2rem;
}

.beginner-info-link {
    padding-top: 0.1rem;
    text-decoration: none;
    color: #0088C2;
    font-weight: bold;
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .content-box {
        padding: 1rem;
        width: 95vw; /* Allow more width for very small screens */
    }
    .description, .headline, .row-custom {
        font-size: 0.9rem; /* Smaller font size */
    }
    .button-custom {
        padding: 0.5rem 1rem; /* Adjust button padding */
        font-size: 0.8rem; /* Smaller text on buttons */
    }
    .brand-name-logo, .check-mark, .button-custom-icon {
        width: 2rem; /* Adjust icon sizes */
        height: 2rem;
    }
}

/* Further adjustments for even smaller screens */
@media (max-width: 480px) {
    .description, .headline, .row-custom , .footer-copyright {
        font-size: 0.8rem; /* Even smaller font size for very small screens */
    }
}



.brand-name-logo {
    height: 3rem;
    width: 3rem;
    padding-right: 0.5rem;
}

.middle-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.row-custom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.pk-spinner {
    transform: scale(3.0);
}

.spinner-box {
    padding-top: 4rem;
}

.pk-spinner {
    height:8rem;
    width:8rem;
    
    left: 50%;
    top: 50%;
    margin:0 auto;
    -webkit-animation: rotation .6s infinite linear;
    -moz-animation: rotation .6s infinite linear;
    -o-animation: rotation .6s infinite linear;
    animation: rotation .6s infinite linear;
    border-left:6px solid rgba(0,136,194,.15);
    border-right:6px solid rgba(0,136,194,.15);
    border-bottom:6px solid rgba(0,136,194,.15);
    border-top:6px solid rgba(0,136,194,.8);
    border-radius:100%;
}

@keyframes rotation {
    from { transform: rotate(0deg); }
    to { transform: rotate(359deg); }
}


.spinner-border {
    width: 8rem;
    height: 8rem;
    color: #0093c9;
}

.check-mark-icon {
    width: 8rem;
    height: 8rem;
}

.info-icon {
    width: 8rem;
    height: 8rem;
}

.error-icon {
    width: 8rem;
    height: 8rem;
}

.description {
    padding-top: 0;
    padding-bottom: 3rem;
}

.button-custom {
    border: 1px solid black;
    border-radius: 0.25rem;
    background-color: #fff;
    color: black;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 2rem;
}

.button-custom-icon {
    padding-right: 10px;
    width: 2rem;
    height: 2rem;
}

.link-custom {
    color: blue;
}

/* Hide elements initially, will be displayed after button click */
.hidden {
    display: none;
}


.footer-copyright {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f0f0f0; /* Example background color */

}

.footer-copyright p {
    font-size: 0.9em;
    line-height: 1.8em;
    text-align: center;
}

a {
    color:#0088c2 !important;
    text-decoration: none !important;
}

a:hover {
    color:#006894 !important;
}

.medatixx a {
    color: #0087A0 !important;
}

.medatixx a:hover {
    color: #0087A0 !important;
}

.medatixx a.doc {
    color: #FFFFFF !important;
}

.button-custom-login {
    border: 1px solid #424242;
    border-radius: 0.25rem;
    background-color: transparent;
    color: #424242;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.1rem 8rem;
    margin: auto;
}
.center-spinner {
    text-align: center!important;
    margin: auto;
    color: #0088c2;
    display: none;
}

.separator {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #424242;
    line-height: 0.1em;
    margin: 10px 0 2rem;
}

.separator-text {
    padding: 1rem 1rem;
    background-color: #f3f6f9;
    color: #424242;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 0.1em;
}

