﻿
/* Brand SAP primary buttons with the BHP orange  */
.ids-button--primary,
a.ids-button--primary {
  border-color: #DD5900 !important;
  background: #DD5900 !important;
  color: #FFFFFF !important;
}

/* Hide the First and Last name fields form the Activation screen */
#firstName-group.fd-form-item,
#lastName-group.fd-form-item {
  display: none !important;
}

/* Hide the continue button from the Activation confimation screen */
#forwardToStartPageSubmit.ids-button {
  display: none !important;
}

/* Hide the staylogged in button from Account conflict confimation screen */
#cancelInvitationProcessButton {
  display: none !important;
}

/* Show only the SMS supported countries on the MFA dropdown list */
li.country {
  display: none;
}
li#iti-item-au.country,
li#iti-item-cl.country,
li#iti-item-in.country,
li#iti-item-us.country,
li#iti-item-ph.country,
li#iti-item-my.country,
li#iti-item-uk.country,
li#iti-item-ca.country,
li#iti-item-sg.country,
li#iti-item-gb.country {
  display: block;
}

/* Hide User ID from MFA steps */
#secondFactorForm #j_username-group {
  display: none;
}

/* Make MFA options full-width */
#secondFactorForm .ids-list.ids-list-borders {
    width: 100%;
}
