.div-100 {
    width: 100%;
}

.div-full {
    width: 100%;
    height: 100%;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.center-full {
    align-items: center;
    justify-content: center;
}

.gap {
    gap: 1rem;
}

.bg-black {
    background-color: black;
}

.login-button {
    background-color: rgba(79,70,229,1);
    color: white;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 2px;
}
