main {
    min-height: calc(100vh - 110px);
    padding-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form_container {
    width: 90vw;
    max-width: 600px;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 40px 20px 40px;
    background-color: var(--black);
    border: 1px solid var(--dark);
    border-radius: var(--radius);
}
  
.title_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.titleForm {
    font-family: "SpaceB";
    margin: 0;
    font-size: 50px;
    color: var(--white);
    text-align: center;
    line-height: 50px;
    margin-bottom: 10px;
}
  
.subtitle {
    max-width: 80%;
    text-align: center;
    color: var(--gray)
}
  
.input_container {
    width: 100%;
    height: fit-content;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.icon {
    filter: invert(60%) sepia(9%) saturate(508%) hue-rotate(209deg) brightness(90%) contrast(90%);
    width: 20px;
    position: absolute;
    z-index: 1;
    left: 12px;
    bottom: 9px;
    transition: all 0.25s;
}
  
.input_label {
    color: var(--gray);
    margin-left: 15px;
    margin-top: 10px;
}
  
.input_field {
    width: auto;
    height: 40px;
    padding: 0 0 0 40px;
    border-radius: var(--radius);
    background-color: var(--black);
    outline: none;
    border: 1px solid var(--dark);
    transition: all 0.25s;
}
  
.input_field:focus {
    border: 1px solid var(--accent1);
    box-shadow: 0 0 5px var(--dark);
}

.input_field:focus .icon {
    filter: invert(100%);
}
  
form button {
    width: 100%;
    margin: 20px;
}

.loader {
    position: absolute;
    z-index: -10;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(var(--accent1), #6363ff, #4e8eff), #6363ff;
    animation: animate 1.5s linear infinite;
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader span {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(var(--accent1), #6363ff, #4e8eff, #6363ff);
}

.loader span:nth-child(1) {
    filter: blur(5px);
}

.loader span:nth-child(2) {
    filter: blur(10px);
}

.loader span:nth-child(3) {
    filter: blur(25px);
}

.loader span:nth-child(4) {
    filter: blur(50px);
}

.loader:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: transparent;
    border-radius: 50%;
}

/*
.separator {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    color: #8B8E98;
}
  
.separator .line {
    display: block;
    width: 100%;
    height: 1px;
    border: 0;
    background-color: #e8e8e8;
}
  
.note {
    font-size: 0.75rem;
    color: #8B8E98;
    text-decoration: underline;
}
*/

/* SMARTPHONE */

@media screen and (min-width: 0px) and (max-width: 768px) {
.titleForm {
    font-size: 30px;
    margin-bottom: 0;
}

.subtitle {
    max-width: 80%;
}

.loader {
    width: 600px;
    height: 600px;
}

main {
    min-height: 0;
}
}