* {
    padding: 0px;
    margin: 0px;
}

html {
    height: 100%;
}

body {
    margin: 0;
    height: 100vh;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
}

button {
    margin: 0 10px;
    display: inline-block;
    width: 150px;
    height: 50px;
    border-radius: 10px;
    border: 1px solid #03045e;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-in;
    z-index: 1;
    cursor: pointer;
}

button::before,
button::after {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    transform: skew(15deg);
    transition: all 0.5s;
    overflow: hidden;
    z-index: -1;
}

button::before {
    left: -10px;
    background: #240046;
}

button::after {
    right: -10px;
    background: #5a189a;
}

/* button:hover::before,
button:hover::after {
    width: 58%;
}

button:hover span {
    color: white;
    transition: 0.3s;
} */

button span {
    color: #03045e;
    font-size: 18px;
    transition: all 0.3s ease-in;
}