* {
	font-family: 'Roboto', sans-serif;
}

html, body {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

.ms-welcome__main {
   display: flex;
   flex-direction: column;
   align-items: center;
   flex: 1 0 auto;
   padding: 28px 20px 32px;
   background: #f9f9fb;
   min-height: calc(100vh - 80px);
}

.ms-welcome__main > h2 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin: 0 0 10px;
}

.ms-welcome__main > p {
    font-size: 13px;
    color: #666;
    text-align: center;
    line-height: 1.6;
    max-width: 210px;
    margin: 0;
}

.text-center {
   text-align: center;
}

/* Icon circle */
.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 16px;
    position: relative;
}

.icon-circle-red    { background: #fff0f0; box-shadow: 0 2px 8px rgba(214,64,69,0.15); }
.icon-circle-green  { background: #e4f8f0; box-shadow: 0 2px 8px rgba(110,216,169,0.2); }
.icon-circle-orange { background: #fff5e6; box-shadow: 0 2px 8px rgba(230,126,34,0.15); }

.icon-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    background: #D64045;
    border-radius: 50%;
    color: white;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f9f9fb;
    line-height: 1;
}

/* Button */
.ms-Button {
    color: white;
    cursor: pointer;
    width: 85%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 1rem;
    margin-top: 22px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.ms-Button-red   { background: #D64045; box-shadow: 0 3px 10px rgba(214,64,69,0.3); }
.ms-Button-green { background: #6ED8A9; box-shadow: 0 3px 10px rgba(110,216,169,0.35); }

.ms-Button.disabled {
    background: rgb(100,100,100);
    cursor: not-allowed;
    box-shadow: none;
}

/* Loader */
.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error banner */
.error-message {
    background: #ffeaea;
    border-left: 3px solid #D64045;
    color: #a01010;
    padding: 10px 14px;
    margin: 0 16px 16px;
    border-radius: 4px;
    text-align: center;
    font-size: 12px;
}

/* Brand footer */
.brand-footer {
    border-top: 1px solid #e8e8ec;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #f9f9fb;
    width: 100%;
    margin-top: auto;
}

.brand-footer-label {
    font-size: 11px;
    color: #aaa;
    letter-spacing: 0.02em;
}

.brand-wordmark {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.01em;
}
