body{
    background-color: rgb(242, 244, 247);
    font-family: Opensans, Arial;
}
.body-flex{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.logo{
    height: 50px;
    margin-bottom: 70px;
}
.create-account-card{
    background-color: white;
    border-left-style: solid;
    border-left-width: 3px;
    border-left-color:  #e94e1b; 
    padding-left: 10px;
    padding-right: 10px;
    width: 250px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    box-shadow: -1px 0px 5px rgba(0,0,0,0.25);
}
.account-info{
    margin: 0;
}
.create-account{
    width: 100%;
    margin: 0;
    color: #e94e1b;
}
.create-account:hover{
    text-decoration: underline;
    text-decoration-color: #e94e1b;
    cursor: pointer;
}

.input-card{
    background-color: white;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    padding-bottom: 20px;
    padding-top: 25px;
    padding-left: 20px;
    padding-right: 20px;
    border-style: solid;
    border-width: 1px;
    border-color: lightgray;
    border-radius: 6px

}
.input-field{
    width: 300px;
    height: 36px;
    font-size: 18px;
    border-style: solid;
    border-width: 1px;
    border-color: lightgray;
    border-radius: 5px;
    outline-color: lightgrey;
    outline-width: 1px;
    padding-left: 10px;
}
.input-reference{
    margin-top: 0;
    margin-bottom: 8px;
}
.input-reference-div{
    margin-top: 14px;
}
.login-button{
    background-color: #e94e1b;
    color: white;
    width: 65px;
    border: none;
    padding: 8px 8px 8px 8px;
    font-size: 16px;
    border-radius: 3px;
    margin-top: 26px;
}
.login-button:hover{
    cursor: pointer;
    opacity: 0.8;
}
.login-align{
    display: flex;
    justify-content: end;
}