body {
    padding-top: 150px;
}

#logo img {
    height: 84px;
}

form[action="/guest_checkout"] {
    position: relative;
    margin-top: 130px;
}

form[action="/guest_checkout"]::before {
    content: 'To make a payment towards your Markoff Law invoice, please agree to the following terms and conditions.';
    position: absolute;
    top: -35%;
}   

#continue-guest {
    border-color: #517a31;
    background-color: #517a31;
    color: white;
    transition: all 0.2s ease-in-out;
    font-size: 0;
}



#continue-guest:hover {
    color: #517a31;
    background-color: transparent;
    outline: none;
}

#continue-guest::before {
    content: 'Continue to Pay';
    font-size: 1rem;
}

#continue-login {
    background-color: white;
    color: #292b2c;
    border-color: #ccc;
    transition: all 0.2s ease-in-out;
    font-size: 0;
}

#continue-login:hover {    
    background-color: #e6e6e6;
    border-color: #adadad;
}

#continue-login::before {
    content: 'Login or Create an Account';
    font-size: 1rem;    
}
