| Direktori : /home/emypro/www/ro/auth/css/ |
| Current File : /home/emypro/www/ro/auth/css/load.css |
body {
margin: 0;
background: #F7F8F9;
}
.container {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.loader {
width: 120px;
height: 120px;
border-top: 4px solid rgb(47, 150, 152); /* Updated color */
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}