html,
body {
  font-size: 13px;
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  color: #202020;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

h1 {
  font-size: 20px;
  margin-bottom: 8px;
}

.publicBg {
  background-image: url('https://3pstorage.blob.core.windows.net/azure-b2c/3pAuth/images/lighthouseBg.jpg');
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.public-side {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  width: 360px;
  height: 100%;
  padding: 0 70px;
}

@media only screen and (max-width: 600px) {
  .public-side {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    height: 100%;
    padding: 0;
  }
  #localAccountForm {
    padding: 0 8px 16px 16px;
    margin: 0 8px 16px 16px;
  }
  .logo-container {
    margin-left: 32px;
    margin-right: 32px;
  }
  .imprint-en:lang(en),
  .imprint-fr-FR:lang(fr-FR),
  .imprint-fr-BE:lang(fr-BE),
  .imprint-nl:lang(nl) {
    display: inherit !important;
    padding: 0 8px 8px 16px;
    margin: 16px 8px 8px 16px;
  }
}

.logo-container {
  margin-top: 70px;
  align-items: center;
  display: flex;
}

.dropdown-wrapper {
  flex-grow: 1;
  text-align: right;
}

#countrySelector {
  width: 125px;
  height: 45px;
  border-radius: 5px;
  border-color: lightgray;
  padding: 10px;
  color: rgb(128, 128, 128);
}

#countrySelector * {
  font-size: 16px;
}

.public-form-container {
  margin-top: 100px;
  flex-grow: 1;
  padding: 16px;
}

.footer {
  display: flex;
  align-items: end;
  gap: 8px;
  margin-bottom: 20px;
}

.grey--text {
  color: #9e9e9e;
  text-decoration: none;
}

.heading,
.intro {
  display: none;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

div.claims-provider-list-buttons.social > div.options > div {
  flex: 1;
}

.accountButton {
  background-repeat: no-repeat;
  background-color: #eeeeee;
  border: 1px solid #cccccc;
  width: 100%;
  height: 35px;
  cursor: pointer;
  margin: 5px 0;
  font-weight: bold;
  text-transform: uppercase;
}

#MicrosoftAccountExchange,
#Mirosoftcommon {
  background-image: url(https://3pstorage.blob.core.windows.net/azure-b2c/3pAuth/images/idp_logos/colored/microsoft.svg);
  background-size: 25px;
  background-position: 6px 4px;
}

#MicrosoftAccountExchange:hover,
#Mirosoftcommon:hover {
  background-image: url(https://3pstorage.blob.core.windows.net/azure-b2c/3pAuth/images/idp_logos/white/microsoft.svg);
  background-size: 25px;
  background-position: 6px 4px;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0;
}

.divider::before,
.divider::after {
  content: '';
  flex-grow: 1;
  background-color: #cccccc;
  height: 1px;
}

.divider h2 {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  padding: 0 10px;
  background-color: #fff;
}

.error {
  background: #eeaeae;
  margin-bottom: 10px;
  font-weight: 600;
  padding: 12px;
  border-width: 4px;
  border-left: 8px solid red;
}

.entry-item {
  margin-bottom: 20px;
}

.entry-item > input {
  height: 42px;
  width: 100%;
  padding-left: 10px;
  box-sizing: border-box;
  border-radius: 8px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.password-label {
  display: flex;
  justify-content: space-between;
}

#forgotPassword {
  font-size: 14px;
  color: #9e9e9e;
  text-decoration: none;
  border-radius: 8px;
}

button#next {
  padding: 10px 20px;
  background-color: #ffc72a;
  border: none;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  color: #3e3e3e;
  font-weight: 400;
  border-radius: 8px;
}
button#register {
  padding: 10px 20px;
  background-color: #ffc72a;
  border: none;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  margin-bottom: 8px;
}
#localAccountForm > div.create {
  display: none;
}

#localAccountForm > div.divider {
  display: none;
}

.imprint-en:lang(en),
.imprint-fr-FR:lang(fr-FR),
.imprint-fr-BE:lang(fr-BE),
.imprint-nl:lang(nl) {
  display: inherit !important;
}

.imprint {
  display: none;
}

.alert-box {
  padding: 20px;
  background-color: red; /* Red background */
  color: white; /* White text */
  margin-bottom: 15px;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  text-align: center;
}

/* Optional: Add some animation when displaying the alert box */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

.alert-box {
  animation: fadeIn 0.5s;
}
