
    .loading-icon {
    font-size: 50px;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}



    .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 2s forwards 2s; /* 2s delay before fading out */
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}



    body {
    font-family: 'Roboto', sans-serif;
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.login-section {
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-color: #000; */
    /* padding: 30px 40px; */
    /* border-radius: 10px; */
    /* box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1); */
    animation: fadeIn 1.5s;
}

@keyframes fadeIn {
    from { transform: translateY(30px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

.logo img {
    margin-bottom: 20px;
    width: 150px;
    animation: logoBounce 1s infinite;
}

@keyframes logoBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

h4 {
    margin-bottom: 30px;
    color: #fff;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}

.material-icons.fab {
    margin-right: 10px;
    font-size: 24px;
    color: #000;
}

@keyframes bgColorChange {
    0%   { background-color: #000; }
    25%  { background-color: #9f6; }
    50%  { background-color: #6f9; }
    75%  { background-color: #69f; }
    100% { background-color: #f06; }
}

