.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}




.login_box {
    border: 1px solid #fff;
    border-radius: 12px;
    margin-top: 7.0rem;
    font-size: 1em;
    color: #fff;
    padding: 2.5em 2.5em 2.5em 2.5em;
    backdrop-filter: blur(25px);
}

.input_box {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.input_field {
    padding: 2px;
    width: 250px;
}

.login_box .login_button {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login_box .login_button a.button {
    border-radius: 4px;
    border: none;
    padding: 2px 10px;
    background-color: #fff;
    color: #010103;

}

.login_box .login_button a.button:hover {
    border-radius: 4px;
    border: none;
    padding: 2px 10px;
    background-color:var(--main-color);
    color: #fff;
}

.line-with-text {
    position: relative;
    text-align: center;
    margin: 29px 0;
}


.line-with-text span {
    position: relative;
    z-index: 1;
    padding: 0 10px;
}

.line-with-text::before,
.line-with-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: #fff;
    z-index: 0;
}

.line-with-text::before {
    left: 0;
    transform: translateY(-50%);
}

.line-with-text::after {
    right: 0;
    transform: translateY(-50%);
}