html, body {
    margin: 0;
    padding: 0;

    width: 100%;
    height: 100%;

    font-family: Arial, Helvetica, sans-serif;
}

.divider {
    width: 350px;

    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(72, 76, 122, 0), rgba(72, 76, 122, 0.75), rgb(72, 76, 122,0));
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

a.forward-button {
    display: inline-block;
    outline: 0;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    color: rgb(72, 76, 122);
    height: 38px;
    padding: 20px 24px 0px 24px;
    border-radius: 50px;
    background-image: linear-gradient(180deg,#fff,#f5f5fa);
    box-shadow: 0 4px 11px 0 rgb(37 44 97 / 15%), 0 1px 3px 0 rgb(93 100 148 / 20%);
    transition: all .2s ease-out;    
}

a.forward-button:hover{
    box-shadow: 0 8px 22px 0 rgb(37 44 97 / 15%), 0 4px 6px 0 rgb(93 100 148 / 20%);
}