﻿@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

.d-flex {
    display: flex;
}

.flex-grow-1{
    flex-grow: 1;
}

.flex-grow-0 {
    flex-grow: 0;
}

.navbar-collapse {
    padding-left: 0;
}

.nav-left {
    padding: 0;
}

.vh-100 {
    height:100vh;
}

.vw-100 {
    width: 100vw;
}

.min-vh-100 {
    min-height: 100vh;
}

.login-container {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blurred-login-img {
    height: 100vh;
    width: 100vw;
    position: absolute;
    background: url("/images/tlloginback_low.jpg") center center ;
    background-size: cover;
    animation: fadein 2s forwards;
    filter: blur(5px);
}

.blurred-login-img::before {
   content: "";
    inset: 0;
    opacity: 0;
    animation: fadein 2s forwards;
    filter: blur(0px);
}



@keyframes fadein {
 0%{
     opacity: 0;
     filter: blur(5px);
 }
    100% {
        opacity: 1;
        filter: blur(0px);
    }
    
}

.blurred-login-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadein 2s forwards;
}
.blurred-login-img img::before {
    content: "";
  
    opacity: 0;
    animation: fadein 2s forwards;
   
}
.login-footer-main{
    width: 100%;
    position: absolute;
    bottom: 0;
}
.login-footer-container{
    width: 100%;
    display: flex;
    position: relative;
    flex-direction: column-reverse;
    justify-content: center;
}

.login-footer-copyright{
    flex-grow: unset;
    opacity: .8;
}

.login-footer-img{
    
   width: 100%;
    flex-grow: unset   ;
    display: flex;
    justify-content: center;
}

.login-footer-img img{
    max-width: 250px;
    margin-bottom: -20px;
}

#pipeSymbol{
    display: none;
}
#pipeSymbolSmall{
    display: none;
}


@media screen and (min-width:400px) {
    #pipeSymbolSmall{
        display: inline;
    }
    
    #backgroundImage{
        
        animation: zoomSlide 60s ease-in-out forwards;
        transition: all 20s ease-in-out;
    }
}

@media screen and (min-width: 695px){
    #pipeSymbol{
        display: inline;
    }
}


@media screen and (min-width:1230px) {
    .login-footer-container{
        bottom: 0;
        position: relative;
        flex-direction: row;
    }

    .login-footer-copyright{
        flex-grow: 1;
    }

    .login-footer-img{

        max-width: 250px;
        flex-grow: 0;
        position: absolute;
        right: 0;
    }

    .login-footer-img img{
        max-width: 250px;
        transform: translateY(-10px);
        padding-right: 10px;
    }

  
}

button {
    min-width: 100px;
    position: relative;
    overflow: hidden;
    transition: background 400ms;
    color: #fff;
    background-color: #ab5f0e;
    padding: 1rem 2rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    outline: 0;
    border: 0;
    border-radius: 0.25rem;
    /*box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);*/
    cursor: pointer;
}

span.ripple {
    position: absolute; /* The absolute position we mentioned earlier */
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 600ms linear;
    background-color: rgba(255, 255, 255, 0.2);
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes zoomSlide {
    
}

::selection {
    background: #eec59c; /* WebKit/Blink Browsers */
}
::-moz-selection {
    background: #EEC59CFF; /* Gecko Browsers */
}

