/*index.php*/
p {
    font-size: 16px;
}

.generic-box-content p {
    margin-bottom: 42px;
    color: rgb(25 25 25 / 87%);
}
.generic-box {
    gap: 48px;
    display: grid;
    align-items: center;
    grid-template-columns: 50% 44%;
}
/*Index.php signin/out button*/

.generic-btn a {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    background: var(--accent);
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
    padding: 20px 30px 20px 30px;
    font-family: 'Montserrat', sans-serif;
}

.generic-btn2 a {
    color: var(--accent);
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    background: transparent;
    box-shadow: inset 0 0 0 2px var(--accent);
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
    padding: 20px 30px 20px 30px;
    font-family: 'Montserrat', sans-serif;
}


.generic-btn2 a:hover {
    color: var(--white-color);
    background: transparent;
    box-shadow: inset 0 0 0 2px var(--white-color);
}


