main {
    display: flex;
    align-items: center;
    justify-content: center;
}
.registerp {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 300px;
    gap: clamp(1.25rem, 1.023rem + 1.136vw, 1.875rem);
    box-shadow: 0px 0px 12px 11px rgba(202, 7, 219, 0.37);
    padding: 1.8rem 1.5rem;
    
}
.form-group {
    font-size: clamp(0.625rem, 0.398rem + 1.136vw, 1.25rem);
    display: flex;
    flex-direction: column;
    background-color: black;
    width: 90%;
    color: rgb(197, 50, 173);
    font-family: 'Russo One';
    gap: clamp(0.313rem, 0.199rem + 0.568vw, 0.625rem);
    flex-shrink: 0;
}

.form-group input {
    background-color: #0c0014;
    border: transparent;
    color: white;
    box-shadow: 0px 0px 8px rgba(202, 7, 219, 0.6); 
    border: 1px solid rgba(202, 7, 219, 0.4);
    outline: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-sizing: border-box;
}


.regbtn {
    background-color: black;
    box-shadow: 0px 0px 12px 11px rgba(202, 7, 219, 0.37);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    font-size: clamp(0.625rem, 0.398rem + 1.136vw, 1.25rem);
}

.registration-message {
    font-size: 10px;
    font-family: 'Russo One';
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease; 
}


.registration-message.error-active {
    color: #ff4a4a; 
    text-shadow: 0 0 10px rgba(255, 74, 74, 0.5); 
}
.registration-message.success-active {
    color: #2ed573;
    text-shadow: 0 0 10px rgba(46, 213, 115, 0.5);
}