.getSplitterPlus-container {
    
}

.getSplitterPlus-text-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.getSplitterPlus-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap; 
}


.emailForm {
    position: relative;
    padding: 1rem;
}

.backButton {
    cursor: pointer;
    position: absolute;
    width: fit-content;
    height: fit-content;
    padding: 0.2rem;
    top: 1.5rem;
    left: 1.5rem;
}

.closeButton {
    color: white;
    cursor: pointer;
    position: absolute;
    font-size: 1.25rem;
    top: 1.75rem;
    right: 1.5rem;
}

.progressBar {
    position: absolute;
    left: 0rem;
    top: 0rem;
    right: 0rem;
    bottom: 0rem;
    width: 0%;
    z-index: -1;
    transition: 0.2s;
}

.shake {
    /* Start the shake animation and make the animation last for 0.5 seconds */
    animation: shake 0.5s;

    /* When the animation is finished, start again */
    animation-iteration-count: infinite;
}

@keyframes shake {
    0%  { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

