*{
    font-family: 'Work Sans', serif;
}
.back_login {
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(to right bottom, #230537, #3b085f, #530b8b, #6c0eb9, #8512eb);
    overflow: hidden;
}

.login_container{
    margin-top: 10vh;
    height: 80vh;
    display: flex;
    align-items: center;
}

.img_container{
    padding-top: 50px;
}

.img_login{
    width: 100%;
    height: auto;
}

.login_title_img {
    text-align: center;
    color: white;
    font-size: 2rem;
}

.form_login{
    width: 100%;
    height: auto;
    border: 2px solid white;
    border-radius: 8px;
    padding: .5rem 1rem;
    box-shadow: rgba(241, 241, 243, 0.25) 0px 50px 100px -20px, rgba(250, 249, 249, 0.3) 0px 30px 60px -30px, rgba(236, 237, 238, 0.35) 0px -2px 6px 0px inset;
}

.login_title {
    font-size: 2rem;
    color: white;
    text-align: center;
}

.input_container {
    position: relative;
    margin-bottom: 15px;
}

.icon_login {
    position: absolute;
    top: 50%;
    left: 15px;
    user-select: none;
    transform: translateY(-50%);
    cursor: pointer;
    color: #fff;
}

.input_log {
    padding: 10px 15px 10px 45px;
    border: 2px solid #ccc;
    border-radius: 8px;
    width: 100%;
    font-size: 16px;
    color: #fff;
    background-color: transparent;
    outline: none;
}
.input_log::placeholder {
    color: #ccc;
}