﻿body {
    background: url('https://wallpaper-house.com/data/out/5/wallpaper2you_63163.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.user-email {
    font-size: 14px;
    color: gray;
}


.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.login-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 350px;
    text-align: center;
    max-width: 100%;
}

.universal-login-title {
    font-family: 'Segoe UI'; /* Možeš koristiti i neki drugi font po izboru */
    font-weight: 300; /* Tanki font */
    font-size: 1.3rem; /* Velicina teksta */
    letter-spacing: 2px;
    color: #373eb6;
    display: block;
    margin-bottom: 20px;
}

button.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #007bff; /* Osnovna boja */
    border: none;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    button.btn:hover {
        background-color: #0056b3; /* Boja pri hover efektu */
        transform: scale(1.05); /* Lagano uvećanje pri hover-u */
    }

    button.btn i {
        margin-right: 8px;
    }

.powered-text {
    font-size: 0.7rem; /* Manji font */
    color: #666; /* Svetlo siva boja, po potrebi promeni */
    text-decoration: none; /* Bez podvlačenja */
}

    .powered-text:hover {
        text-decoration: underline;
    }

/* Kontejner za floating label */
.floating-label {
    position: relative;
    margin-bottom: 1rem;
}


    /* Stilizacija labele koja se postavlja preko inputa */
    .floating-label label {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.2s ease-in-out;
        font-size: 1rem; /* Početna veličina labele */
        color: #aaa;
        pointer-events: none; /* Da klik ide direktno na input */
    }

/* Kada je input fokusiran ili kada ima vrednost (nije prikazan placeholder) */
.custom-input:focus + label,
.custom-input:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-100%);
    font-size: 0.75rem; /* Manji font */
    color: #007bff; /* Boja labele u fokusu */
}
/* Stil za kontejner forme, po potrebi */
.form-group {
    margin-bottom: 1rem;
}

/* Stil za label, sa malim fontom */
.small-label {
    font-size: 0.75rem; /* Mali font */
    color: blue;
    display: block;
    margin-bottom: 0px;
    text-align-last: left;
}

/* Stil za input polja */
.custom-input {
    border: none !important;
    border-bottom: 1px solid #ccc !important;
    outline: none !important;
    padding: 5px 0;
    width: 100%;
    color: dimgray;
}

    /* Fokus efekat na input polju */
    .custom-input:focus {
        border-bottom-color: #007bff !important;
        box-shadow: none !important;
    }

.app-container {
    display: flex;
    gap: 20px;
}

.app-item {
    text-align: center;
}

    .app-item img {
        width: 100px;
        height: 100px;
    }

.pis-card {
    display: flex;
    align-items: center;
    border-left: 6px solid purple;
    border-radius: 8px;
    padding: 15px;
    margin: 10px;
    background: #f9f9f9;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, background 0.3s;
}

    .pis-card:hover {
        transform: scale(1.01);
        background: #e0f0ff;
    }

    .pis-card img {
        width: 72px;
        height: 72px;
        margin-right: 15px;
    }

.pis-card-content {
    display: flex;
    flex-direction: column;
}

.pis-card h2 {
    margin: 0;
}

.pis-card p {
    color: blue;
    font-size: small;
    margin: 5px 0 0;
}

@media (max-width: 768px) {
    .pis-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

        .pis-card img {
            margin-bottom: 10px;
            margin-right: 0;
        }
}

.pis-card-container {
    background: url('https://wallpaper-house.com/data/out/5/wallpaper2you_63163.jpg') no-repeat center center fixed;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    flex-wrap: wrap; /* Omogućava prelamanje na manjim ekranima */
    justify-content: left; /* Centriranje kartica */
    align-items: flex-start; /* Poravnanje po sredini ekrana */
    gap: 20px; /* Razmak između kartica */
    padding: 20px; /* Dodatni razmak od ivica */
    background-color: #f0f0f0; /* Pozadinska boja */
}

.user-profile {
    display: flex;
    align-items: center;
}

.user-image {
    width: 72px;
    height: 72px;
    border-radius: 50%;
}

.user-info {
    margin-left: 10px;
}

.user-name {
    font-size: 18px;
    font-weight: bold;
    color: lightcoral;
}

.user-email {
    font-size: 14px;
    color: silver;
}