body {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #444;
    background-color: #ebebeb;
    background-image: url("/storage/app/media/bg_image.png");
    background-repeat: repeat-y;
    background-size: 100% auto;
    background-attachment: scroll;
    margin: 0;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    z-index: -1;
}

button, .btn {
    display: inline-block;
    padding: 16px 16px;
    background-color: #081548;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, padding-right 0.3s, width 0.3s;
    font-size: 16px;
    position: relative;
    white-space: nowrap;
}

button:hover, .btn:hover {
    padding-right: 30px;
    width: auto;
    background-color: #cf9903;
}

button:hover::after, .btn:hover::after {
    content: ' >';
    position: absolute;
    right: 10px;
}