* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    width: 100%;
    display: grid;
    place-items: center;
    background: #00102a;
}

button {
    min-height: 60px;
    min-width: 350px;
    margin: 5px 0;
    background: #1b2940;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 15px 5px;
}

button:last-child {
    background: #3150ff;
    opacity: 1;
}

button:hover {
    font-size: 16px;
}

.enabled {
    background: #3150ff;
}