*{
    box-sizing: border-box;
    margin:0;
    padding:0;
    font-family: "Poppins", sans-serif;
}

a{
 color: #ffffff;
 text-decoration: none;
}
a:hover{
 text-decoration: underline;
 }
.wrapper{
    display:flex;
    align-items: center;
    justify-content: center;
    width:100%;
    min-height: 55vh;
    padding: 1rem;
} 
.login-wrapper{
    position: relative;
    padding: 4rem 7rem 2rem 2rem;
   
    border-radius: 15px;

    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
    color: #c0c0c0c;
}
.login-header{
    display: flex;
    position: absolute;
    top: 0;
    left: 50%;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    transform: translateX(-50%);
    border-radius: 0 0 20px 20px;
    background-color: #ffffff;
    color: black;
    font-size: clamp(1rem, 1vw, 2rem);
}

.login-header::before{
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    width: 30px;
    height: 30px;
    border-top-right-radius: 50%;
    background: transparent;
  
}
.login-header::after{
     content: "";
    position: absolute;
    top: 0;
    left: -30px;
    width: 30px;
    height: 30px;
    border-top-right-radius: 50%;
    background: transparent;
  
}
.login-form{
    display:flex;
    flex-direction:column;
    margin-top: clamp(0.5rem,3vw, 3rem);
    font-size:clamp(0.8rem, 3vw, 1rem);
    gap:1rem;
}
.input-wrapper{
    display:flex;
    position:relative;
    flex-direction:column;
}
.input-field{
    width:100%;
    padding:0.5rem;
    border:2px solid #c0c0c0;
    border-radius:30px;
    outline:none;
    background: transparent;
    color: #000;
}
.label{
    position:absolute;
    top:50%;
    left:5%;
    transform: translateY(-50%);
    transition: 0.2s;
}
.input-field:focus~.label,.input-field:valid~.label{
    position: absolute;
    top:0%;
    left:0%;
    padding: 0 10px;
    border-radius:30px;
    background-color:#e2f0f0;
    color:black;
}
.icon{
    position:absolute;
    top:18px;
    right:25px;
}
.login-check{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap: 0.5rem;
}
.remember{
    float:right;
}
.forgot{
    font-size:clamp(0.7rem, 2vw, 0.8rem);
}

.register{
    text-align:center;
}
.register a{
    font-weight:500;
}

.etykieta_zam {
      display: inline-block;
      width: 170px;
      margin-bottom: 10px;
      font-weight: bold;
    }

#konto {
      margin-left: 35px; 
      text-align: left;
      font-family: Arial, sans-serif;
    }
.etykieta {
      display: inline-block;
      width: 150px;
      margin-bottom: 10px;
      font-weight: bold;
    }
    .pole {
      width: 250px;
      padding: 5px;
      margin-bottom: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }
    .input-login {
      padding: 10px 20px;
      background-color: #1d4ed8; /* Nowy kolor ciemnoniebieski */
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-weight: bold;
      transition: background-color 0.3s ease; /* Płynne przejście kolorów */
    }
    /* EFEKT NAJECHANIA KURSOREM (ZMIANA NA ZIELONY) */
    .input-login:hover {
      background-color: #16a34a; /* Kolor zielony po najechaniu myszką */
    }
    #test_hasla {
      width: 250px;
      height: 20px;
      margin-bottom: 10px;
    }
    #blad_hasla {
      font-weight: bold;
      margin-left: 10px;
    }
     #przypomnij {
      margin-left: 35px; 
      text-align: left;
      font-family: Arial, sans-serif;
    }
    #komunikat {
      margin-left: 35px;
      font-weight: bold;
    }

