* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --dk-gray: #242424;
    --lt-gray: #9a9a9a;
    --green: #00ffae;
    --blue: #0df7ff;
    --white: #f8f8f8;
    --body-copy: 'Lora', 'Georgia', serif;
}
@font-face {
    font-family: 'aeren'; 
    src: url(https://cdn.aerentech.com/css/fonts/strasua.ttf) format('truetype');
}
@font-face {
    font-family: 'headline';
    src: url(https://cdn.aerentech.com/css/fonts/LEMONMILK-Regular.otf) format('truetype');
}
body {
    font-family: var(--body-copy);
    background: linear-gradient(90deg, var(--dk-gray), #1a1a1a);
    display: flex;
    flex-direction: column;
}
.wrapper {
    display: grid;
    grid-template-columns: 1fr repeat(6, 1fr) 1fr;
    grid-template-rows: auto;
    width: 100%;
    padding: 2em 0;
}
.wrapper > div {
    grid-column: 2 / -2;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'aeren', sans-serif;
    font-size: 36px;
    color: var(--green);
}
h2, h3, h4, h5, h6 {
    font-family: 'headline', sans-serif;
    font-size: 28px;
}
h3 {
    font-size: 22px;
}
h4 {
    font-size: 18px;
}
p {
    font-size: 16px;
}
.splash {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 96px;
    flex-direction: column;
    align-content: center;
}

form {
    width: 100%;
}
form .main_form {
    width: 100%;
    margin: 12px 0;
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 2fr;
    align-items: flex-start;
    justify-content: flex-start;
}
label {
    grid-column: 1;
    margin: 12px 0;
}
input {
    grid-column: 2 / -1;
    height: 20px;
    font-family: var(--body-copy);
}
.form_label {
    position: relative;
}
.form_label span {
    position: absolute;
    content: "Username";
    color: var(--dk-gray);
    font-size: 10px;
    line-height: 10px;
    top: 5px;
    left: 6px;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}
.form_label input:focus {
    outline: none;
}
.form_label input:focus + span, .form_label input:not(:placeholder-shown) + span {
    top: -14px;
    left: 0;
    font-size: 8px;
    color: var(--green);
}

/* BUTTON */
.btn_wrapper {
    width: 115px;
    margin: 24px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
button {
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    background: var(--green);
    border: 2px solid var(--green);
    color: var(--dk-gray);
    letter-spacing: 1px;
    font-weight: bold;
    width: 115px;
    height: 40px;
    line-height: 40px;
    transition: all 0.2s ease-in-out;
}
button:hover {
    background-color: transparent;
    border: 2px solid var(--blue);
    color: var(--blue);
    width: 100px;
}
.btn_icon {
    width: 24px;
    height: 24px;
    border: 2px solid transparent;
    position: absolute;
    transform: rotate(45deg);
    right: 0;
    top: 8px;
    z-index: -1;
    transition: all 0.2s;
}
.btn_icon svg{
    width: 12px;
    position: absolute;
    top: calc(50% - 9px);
    left: calc(50% - 4px);
    transform: rotate(-45deg);
    fill: var(--blue);
    transition: all 0.2s;
}
button:hover + .btn_icon {
    border: 2px solid var(--blue);
    right: -10%;
}

/* BASE CONTAINERS */
.row_container {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}
.column_container {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
}


.app_card {
    width: 170px;
    height: 200px;
    background: var(--white);
    color: var(--dk-gray);
    padding: 24px;
    margin: 12px;
    transition: all 0.25s ease-in-out;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);

    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    align-items: center;
}
.app_card:hover {
    transform: scale(103%);
}