/* Password Protected – DFWM – final, z unikalnym prefiksem .ppdfwm- */
body {
  background:#f5f7fa;
  font-family:'Nunito',sans-serif;
  color:#222;
  margin:0;
  padding:0;
}

.ppdfwm-container {
  max-width:700px;
  margin:50px auto;
  padding:0 30px 30px;
  background:#fff;
  border-radius:10px;
  box-shadow:0 0 15px rgba(0,0,0,.1);
  overflow:hidden;
}
.ppdfwm-topbar{
  width:100%;
  height:8px;
  background:#f58220;
  border-radius:10px 10px 0 0;
}
.ppdfwm-container h1{
  text-align:center;
  font-weight:700;
  color:#003366;
  padding-top:15px;
  margin-bottom:20px;
}

.ppdfwm-logo{ text-align:center; margin:20px 0; }
.ppdfwm-logo img{
  max-height:160px;
  max-width:100%;
  height:auto;
}
@media (max-width:400px){
  .ppdfwm-logo img{ max-height:120px; }
}

.ppdfwm-description{
  text-align:center;
  margin-bottom:30px;
  font-size:16px;
}

.ppdfwm-columns{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
  margin-bottom:25px;
}
.ppdfwm-column{
  flex:1 1 300px;
  max-width:320px;
  background:#f9f9f9;
  border:1px solid #ccc;
  padding:12px;
  border-radius:5px;
  box-sizing:border-box;
}
@media (max-width:350px){
  .ppdfwm-columns{ flex-direction:column; align-items:center; }
}

.ppdfwm-link{
  text-align:center;
  margin:20px 0;
  font-weight:700;
}
.ppdfwm-link a{
  color:#003366;
  text-decoration:none;
}
.ppdfwm-link a:hover{ color:#f58220; }
