body {
      min-height: 100vh;
      background: linear-gradient(135deg, #1C1C1C, #2A2A2A); /* tamna pozadina */
      font-family: 'Poppins', sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    main {
      width: 100%;
      max-width: 900px;
      margin-top: 50px;
    }

    .registration-card {
      background-color: #FFF8E1; /* krem pozadina */
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }

    h2 {
      text-align: center;
      color: #1C1C1C;
      font-weight: 600;
      margin-bottom: 25px;
    }

    label {
      font-weight: 500;
      color: #2B2B2B;
    }

    input, select {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border-radius: 6px;
      border: 1px solid #CCC;
    }

    input:focus, select:focus {
      outline: none;
      border-color: #F2B705;
      box-shadow: 0 0 0 2px rgba(242,183,5,0.2);
    }

    button[type="submit"] {
      width: 100%;
      background-color: #F2B705;
      color: #1C1C1C;
      border: none;
      padding: 12px;
      border-radius: 6px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
    }

    button[type="submit"]:hover {
      background-color: #E0A800;
    }

    a {
      color: #1C1C1C;
      text-decoration: none;
    }

    a:hover {
      color: #F2B705;
    }

    .bg-info {
      background-color: #FFF8E1 !important; /* zamijenjeno krem umjesto default plave */
    }

    /* kosarica u narudžbi */
    #kosarica {
      border: 1px solid #ccc;
      padding: 10px;
      background-color: #FFF8E1;
      color: black;
    }