SCSS
by joshmoto
HTML
<div class="plate-outer">
<input class="reg" value="GN02 FGF" />
</div>
SCSS
@import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap');
body {
background: #20262E;
font-family: 'Bungee', cursive;
}
.plate-outer {
padding: 20px;
}
.reg {
font-family: 'Bungee', cursive;
width: 100%;
background: #f7c52d;
appearance: none;
font-size: 100px;
text-align: center;
box-shadow: none;
border:none;
border-radius: 5px;
color: rgb(0, 0, 0);
text-shadow: 0px 4px 0.7px rgba(0, 0, 0, 0.3);
}