#loginContainer {
  position: absolute;
  top: 7px;
  right: 5px;
  text-align: right;
  border: none;
}

#Logmeni {
  background-color: blue;
  color: white;
  padding: 10px 10px;
  border-radius: 8%;
  cursor: pointer;
}

/* LOGIN MODAL */
.Lmodal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

fieldset {
  border: 1px solid #aaa;
  border-radius: 6px;
  padding: 15px;
}
.Lmodal legend {
  font-size: 30px;
}
.Lmodal label {
  font-weight: bold;
}

.Lmodal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  max-width: 500px;
  width: 80%;
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 30px;
  font-weight: bold;
  position: relative;
  bottom: 20px;
}
.close:hover,
.close:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}

input[type=text],
input[type=password] {
  padding: 16px 0px;
  width: 100%;
  display: inline-block;
  border: none;
  background: #f1f1f1;
}
form input[type=email] {
  padding: 16px 0px;
  width: 100%;
  display: inline-block;
  border: none;
  background: #f1f1f1;
}

button[type=submit],
button[type=button] {
  background-color: #1D94FC;
  color: white;
  padding: 16px 20px;
  margin: 8px 0;
  cursor: pointer;
  width: 100%;
  border-radius: 6px;
}

#Logmeni:hover,
button[type=submit]:hover,
button[type=button]:hover {
  opacity: 0.6;
}

/* Animacija */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s;
}
@-webkit-keyframes animatezoom {
  from { -webkit-transform: scale(0) }
  to   { -webkit-transform: scale(1) }
}

/* Ime korisnika */
#korisnikInfo {
  margin-top: -12px;
  font-weight: bold;
  font-style: italic;
  color: black;
  white-space: nowrap;
  position: absolute;
  top: 53px;
  text-decoration: underline;
}

/* REGISTRACIJA */
#Regmeni {
  background-color: blue;
  color: white;
  padding: 10px 0px;
  cursor: pointer;
  position: absolute;
  top: 7px;
  right: 115px;
  border-radius: 8%;
}
.Rmodal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}
.Rmodal legend {
  font-size: 30px;
}
.Rmodal label {
  font-weight: bold;
}
.Rmodal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  max-width: 500px;
  width: 80%;
}
#Regmeni:hover {
  opacity: 0.6;
}

/* OKO za lozinku */
.password-wrapper {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 15px;
}
.password-wrapper input {
  width: 100%;
  padding-right: 35px; /* prostor za ikonicu */
  box-sizing: border-box;
}
.password-wrapper i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #555;
  font-size: 18px;
}
.password-wrapper i:hover {
  color: #1D94FC;
}

/* Dugme Legenda */
#LegendaBtn {
  background-color: green;
  color: white;
  padding: 10px 20px;
  margin-top: 60px;
  border-radius: 6px;
  cursor: pointer;
  position: absolute;
  top: 60px;
  right: 75px;
}
#LegendaBtn:hover {
  opacity: 0.7;
}

/* Responsivno */
@media (min-width: 480px) {
  #loginContainer {
    right: 65px;
  }
  #Regmeni {
    right: 180px;
  }
}





