body {
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
   font-family: 'Poppins', sans-serif;
    
    
}

.login-container {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 150px;
    margin-bottom: 30px;
}

#microsoftLoginBtn {
    background-color: #2F2F2F;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

#microsoftLoginBtn:hover {
    background-color: #2f2f2f;
}

#microsoftLoginBtn img {
    width: 20px;
    height: 20px;
}

body {
    background: linear-gradient(135deg, #f25022, #7fba00, #00a4ef, #ffb900);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

