/**************************** ** Style for all devices ** ****************************/
body {
    padding-left: 16px;
    padding-right: 16px;
}

button {
    width: 100%;
    background-color: #0E59B4;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s all;
}

button:hover {
     background-color: #0F5AB5;
}

button:active {
    transform: scale(0.98);
    opacity: 0.9;
}
