#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--s800);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

#lottie-animation {
    width: 300px;
    height: 300px;
}

/* Página de bienvenida */

.welcome, .newuser, .guide {
    height: 100vh;
    background: var(--s800);
    color: var(--s50);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    justify-content: center;
}

.welcome svg {
    width: 324px;
}

.welcome-content {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.welcome-buttons {
    display: flex;
    gap: 3.5rem;
}

.welcome-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

.welcome-button small {
    font-size: var(--t12);
    font-weight: 600
}

/* Página de añadir certificado */

.skip {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.custom-file-input {
    position: relative;
    display: inline-block;
}
.custom-file-input input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
}

.file-display {
    padding: .5rem 1rem;
    background: var(--s50);
    color: var(--s950);
    border-radius: 2rem;
    font-size: var(--t12);
    font-weight: 600;
    transition: all 0.2s ease;
}

.file-display:hover {
    background: var(--s600);
    color: var(--s50);
}

@media (max-width: 416px) {
    .welcome svg {
        width: 100%;
    }
}