.rla-registration-step1,
.rla-registration-step2 {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background: #222;
    color: #fff;
    border-radius: 6px
}

.rla-registration-step1 h2,
.rla-registration-step2 h2 {
    text-align: center;
    margin-bottom: 20px
}

.rla-registration-step1 label,
.rla-registration-step2 label {
    display: block;
    margin: 10px 0 5px
}

.rla-registration-step1 input[type="text"],
.rla-registration-step1 input[type="email"],
.rla-registration-step1 input[type="password"],
.rla-registration-step2 input[type="text"],
.rla-registration-step2 input[type="email"],
.rla-registration-step2 input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #555;
    border-radius: 4px;
    background: #333;
    color: #fff
}

.rla-registration-step1 .rla-birth-fields {
    display: flex;
    justify-content: space-between;
    gap: 5px
}

.rla-registration-step1 select,
.rla-registration-step2 select {
    flex: 1;
    padding: 10px;
    border: 1px solid #555;
    border-radius: 4px;
    background: #333;
    color: #fff
}

.rla-registration-step1 input[type="submit"],
.rla-registration-step2 input[type="submit"] {
    background: #ff008a;
    color: #fff;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    width: 100%;
    margin-top: 10px
}

.rla-registration-step1 input[type="submit"]:hover,
.rla-registration-step2 input[type="submit"]:hover {
    opacity: 0.9
}

.rla-registration-step2 input[type="checkbox"] {
    margin-right: 5px
}

#rla_reg_province {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #555;
    border-radius: 4px;
    background: #333;
    color: #fff;
}

#rla_reg_country {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #555;
    border-radius: 4px;
    background: #333;
    color: #fff;
}

.register-error-message,
.register-notice-message {
    background-color: #000;
    padding: 10px;
    border-radius: 4px;
    color: #fff;
    font-size: 1em;
    margin-top: 4px;
    margin-bottom: 10px;
    /* visibility: hidden; - removed visibility hidden so PHP rendered errors show up */
}

/* Snackbar styles */
#snackbar,
#rla-unique-snackbar {
    visibility: hidden;
    min-width: 250px;
    background-color: #ff008a;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 16px;
    position: fixed;
    z-index: 99999;
    left: 50%;
    top: 30px;
    bottom: auto;
    transform: translateX(-50%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#snackbar.show,
#rla-unique-snackbar.show {
    visibility: visible !important;
    opacity: 1 !important;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 9.5s;
    animation: fadein 0.5s, fadeout 0.5s 9.5s;
}

@-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        top: 30px;
        opacity: 1;
    }

    to {
        top: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        top: 30px;
        opacity: 1;
    }

    to {
        top: 0;
        opacity: 0;
    }
}