* {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    list-style: none;
}

.regFormBody {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Archivo", sans-serif;
    min-height: 110vh;
    background-attachment: fixed;


    background-image: radial-gradient(circle, rgba(66, 66, 66, 1) 19%, rgba(181, 181, 181, 1) 38%, rgba(0, 0, 0, 1) 7%, rgba(0, 0, 0, 1) 89%);
    /* background-image: radial-gradient(circle,rgba(120, 120, 120, 1) 18%, rgba(181, 181, 181, 1) 38%, rgba(0, 0, 0, 1) 7%, rgba(0, 0, 0, 1) 89%); */
    /* background-image: radial-gradient(circle,rgba(120, 120, 120, 1) 0%, rgba(5, 5, 5, 1) 37%, rgba(74, 72, 72, 1) 0%, rgba(26, 23, 36, 1) 83%); */
    /* background-image: radial-gradient(circle, rgba(97, 85, 163, 1) 1%, rgba(166, 162, 162, 1) 47%, rgba(46, 40, 59, 1) 100%); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.regFormBody::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("/icons/noise3.png");
    opacity: 0.05;
}

.registrationFormContainer {
    display: flex;
    position: sticky;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    width: 100%;
    min-height: 600px;
    max-width: 480px;
    margin: 0 auto;
    padding: 8px 76px;
    padding-bottom: 30px;
    box-sizing: border-box;


    background: rgba(30, 30, 30, 0.19);
    border-radius: 16px;
    backdrop-filter: blur(8.3px);
    -webkit-backdrop-filter: blur(8.3px);
    border: 1px solid rgba(165, 165, 165, 0.19);

}

.registrationFormContainer input {
    font-size: 12px;
    color: rgb(214, 214, 214);
    background-color: rgb(34, 34, 34);
    border-radius: 38px;
    width: 100%;
    height: 50px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(104, 104, 104);
    padding-left: 24px;

}

.regIconAtom svg path {
    fill: white;
}

.regIconAtom svg {
    width: 68px;
    height: 68px;
    padding-top: 44px;
}


.registrationFormContainer p {
    padding-top: 26px;
    padding-bottom: 60px;
    color: rgb(227, 227, 227);
}

.registrationFormContainer h2 {
    font-size: 32px;
    font-weight: lighter;
    color: rgb(227, 227, 227);
    padding-top: 40px;
}

.registrationFormContainer button {
    background-color: rgb(237, 237, 237);
    font-size: 14px;
    border-radius: 40px;
    border-style: none;
    width: 100%;
    padding: 12px 24px;
    margin-top: auto;
}

.registrationFormContainer button:hover {
    cursor: pointer;
    background-color: rgb(223, 223, 223);

}

.registrationFormContainer input:focus {
    outline: none;
    border-color: #414141;
    box-shadow: 0 0 0 3px rgba(44, 44, 44, 0.3);
}