* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.page {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    position: relative;
    align-items: center;
}

main {
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;

}

.login {
    width: 75vw;
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 25px;

}

.login>figure {
    width: 50%;
    height: 100%;
    max-height: 450px;
    overflow: hidden;

}

.login>figure>img {
    width: 100%;
    object-fit: cover;
    padding: 4px;
}

.form__login {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

h1 {
    font-weight: 800;
}

.login__section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    WIDTH: AUTO;
    MIN-WIDTH: 350PX;
}

.insertUser {
    min-height: 450px;
}

.form_group {
    position: relative;
    --color: #2525257e;
    width: 80%;
    margin-top: 5px;

}

.form_input {
    width: 100%;
    font: inherit;
    background: none;
    color: #706c6c;
    padding: .6em .3em;
    border: none;
    outline: none;
    border-bottom: 1px solid var(--color);
    position: relative;
    z-index: 40;
}

.form_label {
    color: var(--color);
    position: absolute;
    top: 0;
    left: 5px;
    transform: translateY(10px);
    transition: transform .5s, color .3s;
    z-index: 10;
}

.form_input:not(:placeholder-shown)+.form_label {
    color: var(--color-font);
    transform: translateY(-10px) scale(.8);
    transform-origin: left top;
    font-weight: 600;
}

.form_group-btn {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form_btn {
    width: 40%;
    height: max-content;
    border: 1px solid black;
    text-align: center;
    color: #fff;
    padding: .8em;
    font-weight: 800;
    background-color: #1E1E1E;
    margin: 10px;
    margin-right: 2px;
    transition: all .5s ease-in-out;
    cursor: pointer;
    
}

span {
    width: 10px;
}

button[type=submit] {
    background-color: #15E85B;
    color: #111;
}


.politics {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    background-color: #706c6c46;

}

.card {
    margin: 10px;
    max-width: 330px;
    height: auto;
    padding: 5px;
    background-color: #ffffff;
    box-shadow: var(--card);
    opacity: 1;
}

.fa-square-xmark {
    background-color: rgb(255, 255, 255);
    color: #ff0000;
    font-size: 25px;
    margin-left: auto;
    cursor: pointer;
}

.politics__text {
    padding: 15px;
    font-size: 20px;
    text-align: center;
}

.politics__btn {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    width: 100%;
}

.hidden {
    display: none;
}


.green {
    background-color: #15E85B;
    border: none;
    color: #111;

}

.red {
    background-color: #ff0000;
}

.form_btn:disabled {
    opacity: .5;
    cursor: no-drop;
}




@media (max-width: 750px) {
    .login {
        flex-direction: column;
    }

    .login>figure {
        width: 100%;
        border-right: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .login>figure>img {
        width: 50%;
        object-fit: cover;
        padding: 4px;

    }

    .form__login {
        width: 100%;
    }
}

@media (max-width: 750px) {

    .login>figure {
        display: none;

    }
}

.btn-w {
    width: 80% !important;
    font-size: 16px !important;
}