.ms-auth-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 420px));
}

.ms-auth-shell {
    width: 50%;
}
@media (max-width: 768px) {
  .ms-auth-shell {
    width: 100%;
  }
}

.ms-auth-card {
/*     display: grid; */
    gap: 14px;
    padding: 35px 24px;
/*     border: 1px solid #d8dee9; */
    border-radius: 14px;
    background: #000;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.ms-auth-card h3 {
    margin: 0;
    color: #4ADE80;
	text-align:center;
}

.ms-auth-helper {
    margin-top: 15px;
    color: #fff;
}

.ms-auth-field {
    display: grid;
    gap: 6px;
}

.ms-auth-field label {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
	margin-top:10px;
}

.ms-auth-field input {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #000;
    border-radius: 10px;
    background: #2A2A2A;
}

.ms-auth-button,
.ms-auth-link {
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
}

.ms-auth-button {
    background: #4ADE80;
    color: #fff;
    font-weight: 600;
	margin-top:30px;
	width: 100%;
}

.ms-auth-link {
    background: transparent;
    color: #0b63ce;
    text-align: left;
    padding: 0;
}

.ms-auth-message {
    display: none;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
}

.ms-auth-message.is-success,
.ms-auth-message.is-error {
    display: block;
}

.ms-auth-message.is-success {
    background: #e8f8ee;
    color: #166534;
}

.ms-auth-message.is-error {
    background: #fdecec;
    color: #b42318;
}

.ms-auth-card.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Link-style button */
    .ms-auth-link {
      width: 100%;
      height: 36px;
      margin-top: 0.5rem;
      background: transparent;
      border: 0.5px solid rgba(0, 0, 0, 0.12);
      border-radius: 8px;
      color: #fff;
      font-size: 13px;
      font-family: inherit;
      cursor: pointer;
      transition: background 0.15s;
		text-align:center;
    }
 
    .ms-auth-link:hover { background: #f0f0ee; color:black }
		.ms-auth-footer {
  margin-top: 1rem;
  text-align: center;
  font-size: 15px;
  color: #aaa;
}

.ms-auth-footer a {
  color: #4ADE80;
  text-decoration: none;
  margin-left: 5px;
  font-weight: 500;
}

.ms-auth-footer a:hover {
  text-decoration: underline;
}
