/* Styles for the "Join" header on the register page */
.join-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.join-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5em;
}

/* Make sure the main heading is not too far when join icon is present */
.join-header + form {
    margin-top: -10px;
}