@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
    * {
        font-family: "Open Sans", sans-serif;
    }
    
    body {
       background: linear-gradient(180deg, #fff 0%, #eff7ff 100%);
        margin: 0;
        padding: 0;
        min-height: 100vh;
        display: flex;
        flex-direction:column;
        align-items: center;
        justify-content: center;
    }
footer {
    font-size: 14px;
   color: #666e80;
}
    main
    {
        width: 100%;
    display: flex;
    justify-content: center;
    }

    .login-container {
        width: 100%;
        max-width: 460px;
        padding: 20px;
    }
    
    .login-card {
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 40px 32px;
        text-align: center;
    }
    
    .logo-section {
        margin-bottom: 32px;
    }
    
    .logo img {
        max-width: 200px;
        height: auto;
    }
    
    .login-title {
        font-size: 20px;
        font-weight: 400;
        color: #111;
        margin-bottom: 32px;
        line-height: 1.4;
    }
    
    .auth-buttons {
  display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
    align-items: center;
    }
    
    .auth-button {
display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 260px;
    padding: 18px 25px;
    border: 1px solid #D1E0FF;
    border-radius: 12px;
    text-decoration: none;
    color: #1A1A1A;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: white;
    }
    
    .auth-button:hover {
     background-color: #F3F8FF;
    color: #1A1A1A;
    fill: #1A1A1A;
    border-color: #94A3B8;
    }
    
    .auth-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    .microsoft-btn .auth-icon {
        width: 20px;
        height: 20px;
    }
    
    .syncfusion-btn .auth-icon {
        width: 20px;
        height: 20px;
    }
    
    .signup-link {
        font-size: 14px;
        color: #666;
    }
    
    .signup-btn {
        color: #0057ff;
        text-decoration: none;
        font-weight: 600;
    }
    
    .signup-btn:hover {
        text-decoration: none;
        color: #0450c2;
    }
    
    @media (max-width: 480px) {
        .login-container {
            padding: 16px;
        }
        
        .login-card {
            padding: 32px 24px;
        }
    }