/* 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;
}
/* User Panel Error Box */
.error-box-user {
    background-color: #dc3545;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
    border: 1px solid #ff7b88;
}