﻿body {
    margin: 0;
    font-family: 'Montserrat','Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #fff;
}

.ms-login-btn {
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    color: black;
}

    .ms-login-btn:hover {
        background-color: #f0f0f0;
    }

    .ms-login-btn img {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }

.login-box {
    text-align: center;
}

    .login-box h2 {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 15px;
        margin-top: 18px;
    }

    .login-box p {
        color: #555;
        margin: 8px 0 26px;
    }