JSFiddle - React, Tailwind, and code Playground

by Ka1dos

HTML

<div class="apk_type">

    <div class="apk_type_item"></div>

    <div class="apk_type_item"></div>
    
  </div>

CSS

.apk_type{
    display: flex;
    flex-direction: column;
    margin-top: 60px;
}

.apk_type_item:last-child{ margin-top: 30px; }

.apk_type_item{
    width: 300px;
    height: 96px;
    background-color: rgba(34, 49, 183, 0.06);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.19);
    border: 2px solid;
    border-image-source: linear-gradient(180deg, rgba(82, 141, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
    border-image-slice: 1;
}

body{
    background: rgba(21, 32, 124, 1);
}