body {
    background-image: url(../pics/bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.bg-glass {
    position: relative;
    z-index: 1;
    margin: 50px auto;
    width: 100%;
    max-width: 800px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.3); 
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* justify-content: center; */
}

.image-container {
    text-align: center;
    width: 100%;
    flex-basis: 50%;
}

#div_linktree{
    transition: transform 0.5s ease-out;
}

#div_login{
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
}


.row_top img{
    display: flex;
    align-items: start; 
}


.links-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.link {
    min-width: 50% !important;
}

#loginDiv {
    transition: transform 0.5s ease-in-out;
    width: 320px;
    margin-top: 80px;
    float: left;
    padding: 10px 55px 40px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px;
    border-radius: 2px;
    font-size: 13px;
}

.fadeIn{
    animation: 0.5s fadeIn forwards;
    animation-delay: 0.5s;
}

@keyframes fadeIn{
    to {
        scale: 1;
        opacity: 1;
    }
}

input[type=text],
[type=password] {
    width: 97.7%;
    height: 34px;
    padding-left: 5px;
    margin-bottom: 20px;
    margin-top: 8px;
    box-shadow: 0 0 5px #00F5FF;
    border: 2px solid #00F5FF;
    color: #4f4f4f;
    font-size: 16px;
}

label {
    color: #464646;
    text-shadow: 0 1px 0 #fff;
    font-size: 14px;
    font-weight: bold;
}

#login {
    width: 100%;
    background: linear-gradient(#22abe9 5%, #36caf0 100%);
    border: 1px solid #0F799E;
    font-size: 20px;
    margin-top: 15px;
    padding: 8px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    text-shadow: 0px 1px 0px #13506D;
}

#login:hover {
    background: linear-gradient(#36caf0 5%, #22abe9 100%);
}

@media (min-width: 1200px){
    .container {
        max-width: 1140px;
    }
} 

@media (min-width: 992px){
    .container {
        max-width: 960px;
    }
} 

@media (min-width: 768px){
    .container {
        max-width: 720px;
    }

    .link {
        width: 100%;
    }
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

.w3-purple,
.w3-hover-purple:hover {
    color: #fff !important;
    background-color: rgba(156, 39, 176, 0.6) !important;
}