#auth-status {
	color: white;
	background-color: rgb(63, 83, 103);
	font-family: Roboto, sans-serif;
	font-weight: 200;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 5px 0px, rgba(0, 0, 0, 0.12) 0px 3px 4px 0px, rgba(0, 0, 0, 0.14) 0px 2px 4px 0px;
	height: 32px;
	padding: 1em;
	text-align: right;
}

#blue-bar {
	color: white;
	background-color: rgb(63, 83, 103);
	font-family: Roboto, sans-serif;
	font-weight: 200;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 5px 0px, rgba(0, 0, 0, 0.12) 0px 3px 4px 0px, rgba(0, 0, 0, 0.14) 0px 2px 4px 0px;
	height: 32px;
	padding: 1em;
	text-align: right;
}

#auth-status a:link, #main-menu-button a:link, #blue-bar a:link { color: white; text-decoration: none; }
#auth-status a:visited, #main-menu-button a:visited, #blue-bar a:visited { color: white; text-decoration: none; }
#auth-status a:hover, #main-menu-button a:hover, #blue-bar a:hover { color: white; text-decoration: none; }
#auth-status a:active, #main-menu-button a:active, #blue-bar a:active { color: white; text-decoration: none; }

.account-created-detail, .account-verified-detail  {
    color: rgb(63, 83, 103);
    font-size: 14px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-transform: none;
    width: 100%;
    text-align: center;
    font-family: Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-decoration: none;
}

#need-account, #have-account  {
    color: rgb(63, 83, 103);
    font-size: 12px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-transform: none;
    width: 100%;
    text-align: center;
    font-family: Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-decoration: none;
    cursor: pointer;
}

.center-box {
    width: 440px;
    margin: auto;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px 0px, rgba(0, 0, 0, 0.12) 0px 2px 2px 0px, rgba(0, 0, 0, 0.14) 0px 0px 2px 0px;
    margin-top: 20px;
    border-radius: 2px;
}

.email-password-form, .choose-form, .add-booking-form, .account-created-box, .account-verified-box, #confirmation-screen {
    width: 300px;
    margin: auto;
    padding: 10px;
}

.submit-button-span {
    margin:auto;
    color: white;
    font-family: Roboto, sans-serif;
}

.form-group {
    position: relative;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    font-family: Roboto, sans-serif;
}

label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: var(--font-size-small);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.2s ease-out;
}

select {
    appearance: none;
}

input[readonly] {
    border:none;
    outline:none;
    border-bottom: thin solid rgb(224, 224, 224);
    width:300px;
    font-size:var(--font-size-small);
    color: #999999;
}

input:valid {
    border:none;
    outline:none;
    border-bottom: thin solid rgb(224, 224, 224);
    width:300px;
    font-size:var(--font-size-small);
}

input:invalid {
    border:none;
    outline:none;
    border-bottom: thin solid red;
    width:300px;
    font-size:var(--font-size-small);
}

input::placeholder {
    padding-bottom: 1rem;
    color: rgb(119, 134, 147);
}

input:placeholder-shown + label {
    opacity: 0;
    transform: translateY(1rem);
}

#sign-up-button, #sign-in-button, #add-booking-button, #update-booking-button, #submit-booking-button, #return-booking-button, #cancel-booking-button, #main-menu-button, #dismiss-confirmation-button {
    border: 10px;
    box-sizing: border-box;
    display: inline-block;
    font-family: Roboto, sans-serif;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    text-decoration: none;
    margin: .1em;
    padding: 0px;
    outline: none;
    font-size: inherit;
    font-weight: inherit;
    position: relative;
    height: 36px;
    line-height: 36px;
    width: 100%;
    border-radius: 2px;
    transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    background-color: rgb(73, 224, 193);
    text-align: center;
}

h1 {
    font-family: Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 32px;
    letter-spacing: normal;
    color: rgb(63, 83, 103);
    width: 100%;
}

#messages {
    margin: .5em;
    padding: 1em;
    text-align: center;
    visibility: "hidden";
}

body {
	font-family: Roboto, sans-serif;
}

#confirmation-screen {
	display: none;
}

#confirmation-screen-inner h3 {
	text-align: center;
}

#dismiss-confirmation-button {
	margin-top: 1em;
}

.error {
    display: none;
    position: relative;
    bottom: 15px;
    margin-top: .5em;
    font-family: Roboto, sans-serif;
    font-weight: 200;
    font-size: 12px;
    line-height: 12px;
    color: red;
}

.error2 {
    display: none;
    position: relative;
    margin-top: .5em;
    margin-bottom: .5em;
    font-family: Roboto, sans-serif;
    font-weight: 200;
    font-size: 12px;
    line-height: 12px;
    color: red;
}

#sign-in, #sign-up, #account-created, #choose-one, #add-new-booking {
	display: none;
}
