/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Jul 25, 2025, 16:05:57 PM
    Author     : riaMediaIzlog
*/


 .login {
      /* Pozadinska slika */
      background: url('https://source.unsplash.com/1600x900/?technology,office') no-repeat center center fixed;
      background-size: cover;
      position: relative;
      min-height: 100vh;
    }

    /* Tamni overlay preko slike da bi forma bila čitljiva */
    .login::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 0;
    }

    .login-container {
      max-width: 400px;
      padding: 2rem;
      background: #fff;
      border-radius: 0.5rem;
      box-shadow: 0 0 15px rgba(0,0,0,0.3);
      position: relative;
      z-index: 1;
    }

    .login-container h3 {
      margin-bottom: 0.5rem;
      font-size: 2rem;
    }

    .slogan {
      text-align: center;
      margin-bottom: 2rem;
      color: #6c757d;
      font-style: italic;
      font-size: 1rem;
    }

    .form-control {
      height: 50px;
      font-size: 1.1rem;
    }

    .btn-primary {
      height: 50px;
      font-size: 1.2rem;
    }

    @media (max-width: 576px) {
      .login-container {
        padding: 1.5rem;
      }
      .login-container h3 {
        font-size: 1.5rem;
      }
      .slogan {
        font-size: 0.9rem;
      }
      .form-control {
        height: 45px;
        font-size: 1rem;
      }
      .btn-primary {
        height: 45px;
        font-size: 1rem;
      }
    }

