.termos-link-button {
    background: none;
    border: none;
    color: blue;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    font-size: 1em;
}

#pdf-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#pdf-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #fff;
    border: 1px solid #ccc;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#pdf-canvas {
    display: block;
    max-width: 100%;
    height: auto;
}

#close-pdf-viewer {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #333;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 1001;
}

.error-message {
    color: #d8000c;
    background-color: #ffbaba;
    padding: 10px;
    border: 1px solid #d8000c;
    border-radius: 5px;
    margin: 10px auto;
    text-align: center;
    animation: fade-in-error 0.5s ease;
    max-width: 400px;
}

@keyframes fade-in-error {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.spinner {
    border: 12px solid #f3f3f3;
    border-top: 12px solid #f796d0;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.spinner-text {
    margin-top: 15px;
    font-size: 35px;
    color: #f796d0;
    font-family: 'Satisfy', cursive;
}

#forgotLink,
#createLink {
    display: block;
    text-align: center;
    margin: 10px 0;
    text-decoration: none;
    color: #666;
    font-size: 16px;
}

#forgotLink:hover,
#createLink:hover {
    color: #000;
    text-decoration: none;
}
