.product_label {
    /* balance main.css margin-left */
    margin-right: 10px;
}

.login_form .label {
    display: none;
}

.login_form .forgot_password {
    display: none;
}

div.button, a#cancel_button {
    font-size:17px;
    padding: 4px 16px;
    cursor:pointer;
    border: 0;
	border-radius: 0px;
    box-shadow: 2px 2px 4px rgb(150,150,150);
    margin: 4px 2px;
}

a#cancel_button {
    background-color: black;
    color: white;
}

.create_account_link {
    position: relative;
    margin-top: 2em;
}

.create_account_link a {
    display: inline-block;
    cursor: pointer;
    text-decoration: underline;
}

.create_account_link a:hover,
.create_account_link a:active,
.create_account_link a:focus,
.create_account_link a:visited {
    color: rgb(0, 80, 100);
}

.user_form input[type=text],
.user_form input[type=password] {
    background-color: white;
    color: black;
}

.user_form .field {
    display: flex;
}

.user_form .field img {
    margin-left: -2em;
}

.button a {
    text-decoration: none;
    color: white;
    display: inline-block;
    padding: 5px 20px
}
.button:has(a) {
    padding: 0;
}

.button_box {
    width: 100%;
    margin-top: 1em;
}

.button_box .messages {
    position: relative;
    top: -1em;
}

.button_box .buttons {
    display: flex;
    justify-content: center;
}

.button_box .button {
    margin: 0 1em;
}

.client_login .location_icon_subheader img {
    width: 2em;
    height: 2em;
    border-radius: 50%;
    padding: 1em;
    background-color: #f8f8f8;
    margin-top: 1.5em;
}

.confirm_form form {
    display: inline-block;
    width: 100%;
}

.confirm_form form .info {
    contain: inline-size;
    text-align: center;
}


/* PROFILE PAGE */

.profile-page {
  background-color: white;
  box-shadow: 4px 4px 8px #CCC;
  padding: 40px;
  margin: 40px 20px;
  margin-top: 0;
  text-align: left;
  height: 90%;
}
.agent-token,
.agent-token .value {
    display: flex;
    gap: 16px
}
.profile-page ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.profile-page ul li span.value {
    font-weight: 600;
}
.profile-page .agent-token .value.has-value .create {
    display: none;
}
.profile-page .agent-token .value:not(.has-value) .remove {
    display: none;
}
.profile-page .agent-token .remove .confirmation {
    padding-left: 16px;
}
.profile-page .agent-token .value .create button.agent-token--hidden,
.profile-page .agent-token .value .remove button.agent-token--hidden,
.profile-page .agent-token .value .remove .confirmation.agent-token--hidden {
    display: none;
}
.profile-page .agent-token .remove p {
    margin: 0;
    padding-top: 0;
}

.profile-page .agent-token .warning {
    display: flex;
    gap: 16px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}
.profile-page .agent-token .warning p {
    margin: 0;
    padding: 0;
}

.profile-page .agent-token .remove button.delete {
    padding: 0;
}
.profile-page .agent-token .remove button img {
    display: block;
    height: 2em;
}
.profile-page .agent-token .remove img,
.profile-page .agent-token .warning img {
    width: 2em;
    height: 2em;
}


.profile-page .agent-token .warning.warning--hidden {
    display: none;
}
