/* assets/css/auth.css */

.splash-screen-modal .modal-content {
    background-color: #f8f9fa; /* Svetlo siva pozadina kao na sajtu */
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.splash-screen-modal .modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

.splash-card {
    max-width: 400px;
    width: 100%;
    padding: 2rem;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.1);
}

.splash-icon {
    font-size: 4rem;
    color: var(--bs-primary); /* Koristi primarnu boju definisanu u style.css */
}

/* Animacija za pogrešan PIN */
@keyframes shake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
  40%, 60% { transform: translate3d(4px, 0, 0); }
}

.shake {
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
}