.loading-container{display:flex;flex-direction:column;justify-content:center;align-items:center;height:calc(100vh - 8vh);background-color:#e7edf0;animation:fadeIn 1s ease-in-out}@keyframes fadeIn{0%{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}.loading-title{font-size:4rem;color:#007bff;margin:0;animation:popIn 1s ease-out forwards}@keyframes popIn{0%{opacity:0;transform:scale(.8)}to{opacity:1;transform:scale(1)}}.loading-text{font-size:1.5rem;color:#333;margin-top:20px;display:flex;align-items:center;gap:2px}.dot{animation:blink 1.4s infinite}.dot:first-child{animation-delay:0s}.dot:nth-child(2){animation-delay:.2s}.dot:nth-child(3){animation-delay:.4s}@keyframes blink{0%,20%{opacity:0}50%{opacity:1}to{opacity:0}}.spinner{margin-top:30px;width:40px;height:40px;border:4px solid #007bff;border-top-color:transparent;border-radius:50%;animation:spin 1s linear infinite}@keyframes spin{to{transform:rotate(1turn)}}