/* 
 * Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
 * See LICENSE in the project root for license information.
 */

 html,
 body {
     width: 100%;
     height: 100%;
     margin: 0;
     padding: 0;
 }
 
 ul {
     margin: 0;
     padding: 0;
 }
 
 .ms-welcome__header {
    padding: 20px;
    padding-bottom: 30px;
    padding-top: 100px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
 }

 .ms-welcome__main {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex: 1 0 0;
    flex: 1 0 0;
    padding: 10px 20px;
 }
 
 .ms-welcome__main > h2 {
     width: 100%;
     text-align: center;
 }
 
 .ms-welcome__features {
     list-style-type: none;
     margin-top: 20px;
 }
 
 .ms-welcome__features.ms-List .ms-ListItem {
     padding-bottom: 20px;
     display: -webkit-flex;
     display: flex;
 }
 
 .ms-welcome__features.ms-List .ms-ListItem > .ms-Icon {
     margin-right: 10px;
 }
 
 .ms-welcome__action.ms-Button--hero {
     margin-top: 30px;
 }
 
.ms-Button.ms-Button--hero .ms-Button-label {
  color: #0078d7;
}

.ms-Button.ms-Button--hero:hover .ms-Button-label,
.ms-Button.ms-Button--hero:focus .ms-Button-label{
  color: #005a9e;
  cursor: pointer;
}

b {
    font-weight: bold;
}

/* Easy Trademarks branding */

:root {
  --et-blue: #1300FD;
  --et-navy: #1D2037;
  --et-bg: #ffffff;
  --et-bg-soft: #F7F8FF;
  --et-border: #E6E8F0;
  --et-muted: #5F6473;
  --et-success: #0F9F6E;
  --et-error: #B42318;
  --et-radius: 14px;
}
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; color: var(--et-navy); background: var(--et-bg); }
.et-shell { min-height: 100vh; background: linear-gradient(180deg, #ffffff 0%, var(--et-bg-soft) 100%); }
.et-header { padding: 20px 20px 12px; border-bottom: 1px solid var(--et-border); background: #ffffff; }
.et-logo { height: 28px; width: auto; display: block; }
.et-content { padding: 20px; }
.et-card { background: #ffffff; border: 1px solid var(--et-border); border-radius: var(--et-radius); padding: 16px; box-shadow: 0 8px 24px rgba(29, 32, 55, 0.06); }
.et-title { margin: 0 0 8px; font-size: 20px; line-height: 1.25; font-weight: 700; color: var(--et-navy); }
.et-subtitle { margin: 0 0 16px; color: var(--et-muted); font-size: 13px; line-height: 1.45; }
.et-button { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 0 16px; border: 0; border-radius: 999px; background: var(--et-blue); color: #ffffff; font-weight: 700; cursor: pointer; }
.et-button:disabled { opacity: 0.55; cursor: not-allowed; }
.et-input { box-sizing: border-box; width: 100%; min-height: 40px; padding: 9px 11px; border: 1px solid var(--et-border); border-radius: 10px; color: var(--et-navy); }
.et-status { margin-top: 12px; padding: 10px 12px; border-radius: 10px; font-size: 13px; }
.et-status-success { color: var(--et-success); background: #ECFDF5; }
.et-status-error { color: var(--et-error); background: #FEF3F2; }


/* Easy Trademarks task pane layout cleanup */

.et-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 24px 28px 32px;
  text-align: center;
}

.et-brand-header {
  margin: 12px 0 24px;
  text-align: center;
}

.et-wordmark {
  max-width: 260px;
  width: 70%;
  height: auto;
}

.et-title {
  margin: 0 0 28px;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
  color: #1d2037;
}

.et-intro {
  margin: 0 auto 28px;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.45;
  color: #1d2037;
}

.et-email-card {
  max-width: 620px;
  margin: 0 auto 24px;
  text-align: left;
}

.et-email-row {
  display: block;
  margin-bottom: 18px;
}

.et-email-label {
  font-weight: 700;
  color: #1d2037;
  text-align: left;
  margin-bottom: 4px;
}

.et-email-value {
  color: #1d2037;
  text-align: left;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.et-actions {
  text-align: center;
  margin: 24px 0;
}

.et-primary-button {
  appearance: none;
  border: 0;
  border-radius: 8px;
  background: #1300fd;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.et-primary-button:hover {
  filter: brightness(0.95);
}

.et-primary-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.et-result-card {
  max-width: 620px;
  margin: 24px auto 0;
  padding: 16px 18px;
  border-radius: 10px;
  text-align: left;
  border: 1px solid #d8dcff;
  background: #f7f8ff;
  color: #1d2037;
}

.et-result-card.success {
  border-color: #bfe8cb;
  background: #f3fff6;
}

.et-result-card.error {
  border-color: #f2b8b5;
  background: #fff5f5;
}

.et-result-title {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 17px;
}

.et-result-message {
  margin: 0;
  line-height: 1.45;
}

.et-result-meta {
  margin-top: 10px;
  font-family: Consolas, monospace;
  font-size: 13px;
  color: #4b4f68;
  overflow-wrap: anywhere;
}

.et-login-card {
  max-width: 420px;
  margin: 0 auto 24px;
  padding: 18px;
  border: 1px solid #d8dcff;
  border-radius: 10px;
  background: #f7f8ff;
  text-align: left;
}

.et-field-label {
  display: block;
  margin: 14px 0 6px;
  font-weight: 700;
  color: #1d2037;
}

.et-input {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 12px;
  border: 1px solid #c8cce8;
  border-radius: 8px;
  font-size: 15px;
}

.et-input:focus {
  outline: 2px solid rgba(19, 0, 253, 0.18);
  border-color: #1300fd;
}
