
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f9;
    overflow-y: auto;
}

.registration-form {
    width: 90%;
    max-width: 650px;
    padding: 20px;
    background: rgba(255,255,255,0.3);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.social-dashboard
{
    max-width: initial;
}

.social-list{
    display: flex;
    justify-content: space-evenly;
    overflow-y: auto;
    flex-wrap: wrap;
}

.social-list a{
    width: 20%;
    max-width:120px;
    min-width: 100px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: #6c757d !important;
    color: #FFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin:1rem;
    border-radius: 7px;
    font-size:200%;
    text-decoration: none;
}

.numempth{
    color:rgba(180,0,0,1);
    font-weight:900;
}

.social-list a:hover
{
    background-color: rgba(227,242,253,0.5);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.socialslabelexample{
    max-width:150px;
    min-width:100px;
}

.back
{
    position: absolute;
    top: -3rem;
    left: -1rem;
    text-decoration: none;
    font-size:125%;
}

.social-details{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.social-details a, .social-details a:hover{
    text-decoration: none;
}

.facebook{
    padding-left: 3rem;
    background-image: url(../emperorassets/Facebook_Logo_Primary.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
}

.instagram{
    padding-left: 3rem;
    background-image: url(../emperorassets/Instagram_Glyph_Gradient.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
}

.patreon{
    padding-left: 3rem;
    background-image: url(../emperorassets/PATREON_SYMBOL_1_BLACK_RGB.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
}

.warning{
    color:rgba(180,0,0,1) !important;
}

.emphasis{
    font-weight:600;
    color:rgba(180,0,0,1);
    text-align: center;
}

.registration-form h1 {
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.form-group input:focus {
    border-color: #007bff;
    outline: none;
}

.form-group .form-half {
    width: 48%;
    display: inline-block;
}

.form-group .form-half + .form-half {
    margin-left: 4%;
}

.form-actions {
    text-align: center;
}

.form-actions button, .form-actions . btn-spoof {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.form-actions button:hover {
    background: #0056b3;
}

.brand{
    text-align: center;
    padding-bottom: 0.5rem;
    position: relative;
}

#user_privacy, #user_public
{
    width: auto;
    float: left;
    padding: 0.5rem;
    margin: 6px;
}

@media (max-width: 768px) {
    .form-group .form-half {
        width: 100%;
        display: block;
        margin-bottom: 10px;
    }

    .form-group .form-half + .form-half {
        margin-left: 0;
    }
}