body{    font-family: 'Poppins2';font-display: swap;}
.control {user-select: none;
    font-family: arial;
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
    padding-top: 3px;
    cursor: pointer;
    font-size: 16px;
}
    .control input {
        position: absolute;
        z-index: -1;
        opacity: 0;
    }
.control_indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #e6e6e6;
    border: 0px solid #000000;
    border-radius: 0px;
}
.control:hover input ~ .control_indicator,
.control input:focus ~ .control_indicator {
    background: #cccccc;
}

.control input:checked ~ .control_indicator {
    background: rgb(42, 107, 192);
}

.control input:disabled ~ .control_indicator {
    background: #e6e6e6;
    opacity: 3;
    pointer-events: none;
}
.control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}
.control input:checked ~ .control_indicator:after {
    display: block;
}
.control-checkbox .control_indicator:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.control-checkbox input:disabled ~ .control_indicator:after {
    border-color: #7b7b7b;
}
.control-checkbox .control_indicator::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 4.5rem;
    height: 4.5rem;
    margin-left: -1.3rem;
    margin-top: -1.3rem;
    background: #2aa1c0;
    border-radius: 3rem;
    opacity: 0.6;
    z-index: 99999;
    transform: scale(0);
}
#data{ position: relative;}
#data:before {
    content: attr(placeholder);
    color: #757575;
   
    position: absolute;
    font-family: 'Poppins2';font-display: swap;
    font-size: 18px;
    pointer-events: none;
    position: absolute;
    left: 50%; 
    top: 50%; 
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    text-align: left;
  }
  
  #data:focus:before,
  #data:valid:before {
    content: "";
  }

  #data::-webkit-datetime-edit {
    opacity: 0; 
  }
  
  #data:focus::-webkit-datetime-edit {
    opacity: 1; 
  }
  
  #data:valid::-webkit-datetime-edit {
    opacity: 1; 
  }

  #gender-t{
    font-family: 'Poppins2';font-display: swap;font-size: 17px;
    color: #4d4d4d;
    width: 270px;max-width: 85%;
    margin: 20px auto 0 auto;
  }

  #gender-bb{
    width: 270px;margin: 10px auto 40px auto;
    display: flex;justify-content: center;align-items: center;
    font-family: 'Poppins2';font-display: swap;height: auto;
    font-size: 16px;max-width: 85%;cursor: pointer;
    color: #f1f1f1;
  }

  #gender-m{
    width: 50%;height: 40px;background-color: #1e84be;
    text-align: center;line-height: 40px;border-radius: 10px 0 0 10px;
  }
  
  #gender-k{
    width: 50%;height: 40px;background-color: #222222;
    text-align: center;line-height: 40px;border-radius: 0px 10px 10px 0;
  }


  
.pass-icon-input{
  padding: 15px 20px 15px 20px;background-color: transparent;border: 1px solid #222222;margin-bottom: 10px;
  border-radius: 15px; height: 25px;font-family: 'Poppins2';font-display: swap;
  font-size: 20px;color: rgb(241, 241, 241);max-width: 85%;user-select: none;

  padding-left: 42px; 
  background-image: url('https://romasolutions.pl/logo/svg/lock-solid.svg');
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: 18px 18px;
  width: 318px;
  }
 
  

  #rid-inf-reg-bb{
    font-family: 'Poppins2';font-display: swap;
    width: calc(100% - 40px);border: 1px solid #424242;border-radius: 15px;
    padding: 15px 20px;margin-bottom: 30px;
  }

  #rid-inf-reg-tit{
    font-size: 20px;text-align: center; color: #8a8a8a;margin-bottom: 10px;
  }

  #rid-inf-reg-op{
    font-size: 16px;color: #999999;
  }




  .login-button {
    position: relative;
    width: 100%;
    height: 44px;
    background-color: #0f9af7;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    margin-top: 40px;
    overflow: hidden;
}

.login-button:hover {
    background-color: #0891ec;
}

.login-button:active {
    transform: scale(0.98);
}

.login-button:disabled {
    background-color: #0782e7;
    cursor: not-allowed;
    opacity: 0.7;
}

.button-text {
    display: inline-block;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
}

.button-text.hiding {
    transform: translateY(-20px);
    opacity: 0;
}

.dots-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 30px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.dots-loader.showing {
    transform: translate(-50%, 0);
    opacity: 1;
}

.dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    display: inline-block;
}

.dot:nth-child(1) {
    animation: jumpingDot 1.2s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation: jumpingDot 1.2s ease-in-out 0.2s infinite;
}

.dot:nth-child(3) {
    animation: jumpingDot 1.2s ease-in-out 0.4s infinite;
}

@keyframes jumpingDot {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    opacity: 1;
    animation: pulse 1s ease-out;
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.success-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    position: relative;
}

.checkmark:before, .checkmark:after {
    content: '';
    position: absolute;
    background-color: white;
    border-radius: 2px;
}

.checkmark:before {
    width: 8px;
    height: 3px;
    left: 2px;
    top: 12px;
    transform: rotate(45deg);
}

.checkmark:after {
    width: 15px;
    height: 3px;
    left: 5px;
    top: 10px;
    transform: rotate(-45deg);
    transform-origin: left center;
}

.error-message {
    color: #ed4245;
    font-size: 14px;
    margin-top: 16px;
    display: none;
    text-align: center;
    animation: fadeInUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#forget-pass{text-align: right;position: absolute;right: 0;}
#logowanie_formularz{max-width: calc(100% - 30px);position: relative;}

.input-group {
  margin-bottom: 20px;
  position: relative;
}

.input-group label {
  display: block;
  color: #b9bbbe;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.input-group:focus-within label {
  color: #72b0da;
}

.input-group input {
  width: 100%;box-sizing: border-box;
  padding: 12px;
  background-color: #202225;
  border: 1px solid #202225;
  border-radius: 4px;
  color: #dcddde;
  font-size: 16px;
  transition: all 0.3s ease;
}

.input-group input:focus {
  border-color: #72bdda;
  outline: none;
  box-shadow: 0 0 0 2px rgba(114, 185, 218, 0.3);
}

.form-rej-input-group{display: flex;align-items: center;justify-content: center;}

.login-top-box{width: 260px;margin: 50px auto 0 auto;user-select: none;}
#login-left{border-radius: 15px 0px 0px 15px;background-color: #2194d8;}
#login-right{border-radius: 0px 15px 15px 0px;}
.login-top{width: 130px;height: 45px;background-color: #222222;float: left;line-height: 45px;
    font-family: 'Poppins2';font-display: swap;text-align: center;cursor: pointer;font-size: 16px;
    transition: 0.3s ease;
}

#forget-pass{color: #2194d8;font-family: 'Poppins2';font-display: swap;font-size: 13px;cursor: pointer;
margin-left: 230px;margin-top: 2px;margin-bottom: 5px;min-width: 140px;user-select: none;
}
#dziekuje-rejestracja-form{width:345px;
font-family: 'Poppins2';font-display: swap;font-size: 22px;border: 3px solid #202020;border-radius: 15px;margin: 20px auto 30px auto;
padding: 20px 40px;
}




.zle{width:450px;
    font-family: 'Poppins2';font-display: swap;font-size: 22px;border: 3px solid #ff2a2a;border-radius: 15px;margin: 20px auto 50px auto;
    padding: 20px 40px;
}

#zlehaslo-form{width:345px;
    font-family: 'Poppins2';font-display: swap;font-size: 22px;border: 3px solid #ff2a2a;border-radius: 15px;margin: 20px auto 30px auto;
    padding: 20px 40px;
}


#zleid-form{width:345px;
    font-family: 'Poppins2';font-display: swap;font-size: 22px;border: 3px solid #ff2a2a;border-radius: 15px;margin: 0px auto 150px auto;
    padding: 20px 40px;}

    
    #zaloguj-title-text2{user-select: none; color: white;font-family: 'Poppins', sans-serif;font-size: 23px;text-align: center;margin-bottom: 35px;
    max-width: 100%;}

    @media only screen and (max-width: 392px) {
        #zaloguj-title-text2{font-size: 21px;}
    }
    @media only screen and (max-width: 360px) {
        #zaloguj-title-text2{font-size: 20px;}
    }
    @media only screen and (max-width: 345px) {
        #zaloguj-title-text2{font-size: 18px;}
    }