@font-face {
   font-family: 'Public Sans';
   src: url('fonts/PublicSans/PublicSans-VariableFont_wght.ttf') format('truetype');
   font-weight: 100 900;
   font-style: normal;
}

@font-face {
   font-family: 'Public Sans';
   src: url('fonts/PublicSans/PublicSans-Italic-VariableFont_wght.ttf') format('truetype');
   font-weight: 100 900;
   font-style: italic;
}

body {
   background-color: #f5f4f4;

   margin-top: 40px;
   font-family: "Public Sans", cursive, system-ui, -apple-system, Arial, Roboto;
   font-size: 0.9375rem;
   font-weight: 400;
   box-sizing: border-box;
}

#logo {
   display: block;
   width: 400px;
}

main {
   background-color: #fff;
   max-width: 400px;
   margin: 0 auto;
   border: 1px solid #ccc;
   padding: 30px 30px 20px 30px;
   box-shadow: 0.125rem .125rem .25rem 0 rgba(190, 190, 190, 0.4);
}

.app-brand {
   display: flex;
   flex-direction: column;
   align-items: center;
}

hr {
   background-color: #d9dee3;
   border: 0;
   margin: 1rem 0;
   height: 1px;
   width: 100%;
}

.row {
   display: flex;
   flex-wrap: wrap;
   margin-bottom: 1rem;
}

.form-label {
   margin-bottom: .5rem;
   font-size: 0.75rem;
   font-weight: 500;
   text-transform: uppercase;
}

.form-control {
   width: 100%;
   padding: .375rem .75rem;
   font-size: 1rem;
   font-weight: 400;
   line-height: 1.5;
   color: #212529;
   background-color: #fff;
   background-clip: padding-box;
   border: 1px solid #ced4da;
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
}

.form-control:focus {
   color: #212529;
   background-color: #fff;
   border-color: #86b7fe;
   outline: 0;
   /*box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);*/
   box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.mb4 {
   margin-bottom: 1.5rem;
}

.btn {
   display: inline-block;
   font-weight: 400;
   line-height: 1.53;
   text-align: center;
   vertical-align: middle;
   cursor: pointer;
   user-select: none;
   padding: .4375rem 1.25rem;
   font-size: 0.9375rem;
   width: 100%;
   margin-top: 30px;
   color: #fff;
   background-color: #1F4C94;
   border: 1px solid #0d1f3d;
   box-shadow: 0 .125rem .25rem 0 rgb(39 53 119 / 40%);
}

.btn:hover {
   color: #fff;
   background-color: #5f61e6;
   border-color: #5f61e6;
   /*transform: translateY(-1px);*/
}

.error {
   width: 100%;
   margin-top: .3rem;
   font-size: 0.8125rem;
   color: #ff3e1d;
}