﻿.nav {
    background: var(--primary-color);
    height: 45px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-shadow: 1px 4px 7px 0px rgba(0,0,0,0.19);
    -webkit-box-shadow: 1px 4px 7px 0px rgba(0,0,0,0.19);
    -moz-box-shadow: 1px 4px 7px 0px rgba(0,0,0,0.19);
    position: relative;
}

#logo-hiperlink {
    cursor: pointer;
    color: var(--negative-text);
    font-weight: 700;
    font-size: 16px;
}

#logo-hiperlink img {

}

.content {
    background: var(--secondary-color);
    height: calc(100vh - 45px);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 315px;
    height: 400px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}

.logo-title {
    user-select: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 70px;
    margin-bottom: 15px;
}

    .logo-title img {
        height: 100%;
        object-fit: cover;
        scale: 2;
    }

.welcome-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    gap: 10px;
}

    .welcome-container .big-span {
        font-size: 20px;
    }

.login-form {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
}

.eye-password svg {
    cursor: pointer;
    transition: fill 0.1s;
}

.eye-password svg:hover {
    fill: var(--primary-color);
}

.login-big-button {
    background: var(--primary-color);
    overflow: hidden;
    height: 40px;
    width: 100%;
    border: none;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    color: var(--negative-text);
    position: relative;
    transition: scale 0.1s, transform 0.1s;
    user-select: none;
}
    .login-big-button:not(:disabled):hover {
        scale: 1.02;
        transform: translateY(-2px);
    }

    .login-big-button svg {
        width: 20px;
        fill: var(--negative-text);
    }

    .login-big-button:not(:disabled):hover .shiny-button {
        left: 275px;
    }

    .login-big-button:disabled {
        opacity: 0.5;
    }

.shiny-button {
    position: absolute;
    left: -120px;
    height: 100%;
    width: 120px;
    background: var(--glassy-transparent);
    transition: left 0.4s ease-in-out;
}

.forgot-password-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--primary-color);
    fill: var(--primary-color);
    width: fit-content;
    cursor: pointer;
    transition: all 0.2s;
}

    .forgot-password-inner:hover {
        color: var(--secondary-color);
        fill: var(--secondary-color);
    }

.forgot-password {
    width: 100%;
    display: flex;
    justify-content: center;
}

    .forgot-password svg {
        width: 16px;
    }
    
    .forgot-password span {
    
    }