@import url("layout.css");

body {
    background-color: #F7F7F7;
    font-family: "Roboto","Helvetica Neue","Helvetica","Arial","sans-serif";
}

input, select, select > option, span, p, button {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

#app-header {
    color: #fff;
    background-color: #002D73;
    top: 0;
    left: auto;
    right: 0;
    position: fixed;
    width: 100%;
    box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2), 0px 4px 5px 0px rgba(0,0,0,0.14), 0px 1px 10px 0px rgba(0,0,0,0.12);
}

#container-logo {
    width: fit-content;
    height: 64px;
    background-color: #FFFFFF;
    display: grid;
    vertical-align: middle;
}

#logo {
    max-width: 100%;
    max-height: 100%;
    padding: 16px;
    width: 200px;
    min-width: 200px;
    background-color: #FFFFFF;
}

#panel-main {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 130px;
    box-shadow: 0px 2px 1px -1px rgba(0,0,0,0.2), 0px 1px 1px 0px rgba(0,0,0,0.14), 0px 1px 3px 0px rgba(0,0,0,0.12);
    color: rgba(0, 0, 0, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    background-color: #fff;
}

#panel-header {
    background-color: #FBFBFB;
    display: inline-flex;
    width: 100%;
}

#panel-header-content {
    padding: 16px;
    display: inherit;
}

#panel-header-text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.00938em;
    margin: 0;
    color: black;
    text-transform: uppercase;
}

#register-password-form, #forgot-password-form, #expired-password-form {
    width: 100%;
}

#btn-submit, #btn-redirect-login {
    margin: 15px;
    min-width: 140px;
    height: 36px;
    padding: 0 16px;
    background-color: #0051C0;
    border: none;
    border-radius: 2px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    outline: none;
    cursor: pointer;
    transition: 250ms;
}

#btn-submit:hover, #btn-redirect-login:hover {
    background-color: #002D73;
}

#password-requirements-container {
    font-size: 0.875em;
    font-weight: 400;
    margin: 20px;
    color: rgba(0,0,0,87);
}

.form-element {
    margin: 20px;
}

.form-element input {
    width: 60%;
}

.submit-element {
    text-align: right;
}

.form-control {
    width: 100%;
    height: 36px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #DBDBDB;
    outline: none;
}

.form-control-error{
    border-bottom-color: #D82D24 !important;
}

.form-element-text {
    font-size: 0.875em;
    opacity: 0.5;
    margin-bottom: 4px;
    font-weight: 500;
}

.form-element-error {
    color: #D82D24;
    font-size: 0.75em;
    margin-top: 5px;
    margin-left: 5px;
    font-weight: 400;
}

.divider {
    border: none;
    height: 1px;
    margin: 0;
    flex-shrink: 0;
    background-color: rgba(0, 0, 0, 0.12);
}

.center {
    text-align: center;
}

.disabled-input {
    opacity: 0.5;
}