/* General Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Login Container */
.login-container {
    text-align: center;
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    width: 400px;
    animation: fadeIn 1s ease-in-out;
}

/* Logo */
.logo {
    width: 150px;
    margin-bottom: 25px;
}

/* Title */
h1 {
    font-size: 26px;
    color: #333;
    margin-bottom: 30px;
}

.highlight {
    color: #0078D4; /* Microsoft blue */
    font-weight: bold;
}

/* Microsoft Button */
.ms-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0078D4;
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,120,212,0.3);
}

.ms-login-btn:hover {
    background: #005a9e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,90,158,0.4);
}

/* Microsoft Logo */
.ms-logo {
    width: 24px;
    margin-right: 12px;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
