@font-face {
    font-family: 'museo-500';
    src: url('../fonts/Museo 500.otf') format('opentype');
}

body {
    margin: 0;
    font-family: museo-500;
    height: 100vh;
    background:
            radial-gradient(circle at 80% 20%, rgba(160, 70, 70, 0.12), transparent 45%),
            linear-gradient(135deg, #d9e0e6, #aeb7c0, #7f8892);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: snow;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 320px;
}

.login-container h2 {
    color: #333;
}

.ms-button {
    display: inline-block;
    background-color: #2f2f2f;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
    padding: 12px 65px;
}

.ms-button:hover {
    background-color: #1f1f1f;
}