body {
    background: linear-gradient(to right, #D0B8A8, #DFD3C3, #F8EDE3);
    font-family: 'Karla', sans-serif;
}

#passForm {
    width: 300px;
    margin: 20vh auto 0 auto;
    padding: 20px;
    background-color: whitesmoke;
    border-radius: 10px;
    font-size: 12px;
    align-items: center;
}

#passForm h1 {
    color: #0f2027;
    text-align: center;
}

.submit-button {
    padding: 10px;
    margin-top: 10px;
    width: 100%;
    color: white;
    background-color: #8D493A;
    border: none;
    border-radius: 4px;
}

.input-control {
    display: flex;
    flex-direction: column;
}

.input-control input {
    border: 2px solid #f0f0f0;
	border-radius: 4px;
	display: block;
	font-size: 12px;
	padding: 10px;
	width: 92%;
}

.input-control input:focus {
    outline: 0;
}

.input-control.success input {
    border-color: #09c372;
}

.input-control.error input {
    border-color: #ff3860;
}

.input-control .error {
    color: #ff3860;
    font-size: 9px;
    height: 13px;
}

.input-control .info {
    color: #A0937D;
    font-size: 9px;
    height: 13px;
}

.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 125px;
  }

#appleAddToWalletButton {
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    outline: none;
}

#appleAddToWalletButton img {
    display: block;
    width: 100%;
    height: 40px;
}

#loadingMessage {
    display: none;
    font-size: 1.2em;
    margin-top: 10px;
    color: #007bff;
    text-align: center;
}