/* Google Fonts Link */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Resetting default styling and setting font-family */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}


body {
    width: 100%;
    min-height: 100vh;
    padding: 0 10px;
    display: flex;
    background: rgba(0, 171, 88, 0.014);
    justify-content: center;
    align-items: center;

}

/* Login form styling */
.login_form {
  margin-left: 10px;
  margin-right: 10px;
  
    width: 100%;
    max-width: 400px;
    background: #fff;
    border-radius: 16px;
    padding: 41px 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.login_form h3 {
    font-size: 25px;

}
.login_form h1{
  margin-top: 5px;
  font-size: 56px;
  font-family: "Urbanist", sans-serif;
}
.login_form h1 span{font-size: 16px;color: rgb(177, 178, 178);font-family: "Urbanist", sans-serif;}

/* Google & Apple button styling */

.login_form .login_option {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.login_form .login_option .option {
    width: calc(100% - 12px);
}

.login_form .login_option .option a {
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: #F8F8FB;
    border: 1px solid #DADAF2;
    border-radius: 5px;
    margin: 34px 0 24px 0;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: 500;
    transition: 0.2s ease;
}

.login_form .login_option .option a:hover {
    background: #ededf5;
    border-color: rgb(0, 171, 88);
}

.login_form .login_option .option a img {
    max-width: 25px;
}

.login_form p {
    text-align: center;
    font-weight: 500;
}

.login_form .separator {
    position: relative;
    margin-bottom: 24px;
}

/* Login option separator styling */
.login_form .separator span {
    background: #fff;
    z-index: 1;
    padding: 0 10px;
    position: relative;
}

.login_form .separator::after {
    content: '';
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    height: 1px;
    background: #C2C2C2;
    display: block;
}

form .input_box label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}

/* Input field styling */
form .input_box input {
    width: 100%;
    height: 57px;
    border: 1px solid rgb(0, 171, 88);
    border-radius: 5px;
    outline: none;
    background: #F8F8FB;
    font-size: 17px;
    padding: 0px 20px;
    margin-bottom: 25px;
    transition: 0.2s ease;
}

form .input_box input:focus {
    border-color: rgb(0, 171, 88);
}

form .input_box .password_title {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

form .input_box {
    position: relative;
}

a {
    text-decoration: none;
    color: rgb(0, 171, 88);
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}
form .input_box textarea {
    width: 100%;
    min-height: 120px;          /* Większa wysokość dla textarea */
    border: 1px solid rgb(0, 171, 88);
    border-radius: 5px;
    outline: none;
    background: #F8F8FB;
    font-size: 17px;
    padding: 12px 20px;         /* Padding podobny do input, ale trochę więcej od góry i dołu */
    margin-bottom: 25px;
    resize: vertical;           /* Pozwala użytkownikowi zmieniać wysokość w pionie */
    font-family: inherit;       /* Dziedziczy font formularza */
    transition: 0.2s ease;
    box-sizing: border-box;  
      /* Padding nie zwiększa szerokości */
}
form h3{margin-bottom:20px;text-align:center}

form .input_box textarea:focus {
    border-color: rgb(0, 171, 88);
}
/* Login button styling */
form button {
    width: 100%;
    height: 56px;
    border-radius: 5px;
    border: none;
    outline: none;
    background: rgb(0, 171, 88);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 28px;
    transition: 0.3s ease;
}

form button:hover {
    background: rgb(0, 171, 88);
}
    .premium{background-color:rgb(1, 8, 27);color:white;}
    .checklist {
      list-style: none;
      padding: 0;
      margin: 0;
      margin-bottom:30px;
    }

    .checklist li {
  display: flex;
  align-items: flex-start; /* <-- zamiast center */
  margin-bottom: 12px;
  font-size: 16px;
  color: #2a2a2a;
}

.checklist li::before {
  content: '✔';
  color: #4e7eff;
  font-weight: bold;
  margin-right: 10px;
  background-color: #e8f0ff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
       .bodydiv .login_form button{
        background: rgba(0, 171, 88, 0);
        border: 1px solid black;
        border-radius: 100px;
        color:black;
    }
    .premium button{
        --border-bottom-width: 1px;
        --border-color: rgb(0, 171, 88);
        --border-left-width: 1px;
        --border-right-width: 1px;
        --border-style: solid;
        --border-top-width: 1px;
        background-color: rgb(0, 171, 88);
        width: 100%;
        opacity: 1;
        border-radius: 100px;
        color:white;
        
    }
 
    .premium .checklist li{color:rgb(177, 178, 178);}

form button:hover {
    background: rgb(0, 0, 0);
    color:White
}
.premium button:hover{
     background: rgb(255, 255, 255);
    color:black;
}
/* Responsive Styling */
@media (max-width: 1024px) {
    .facebook-page {
      width: 45%;
    }
  
    .facebook-page h1 {
      font-size: 3rem;
    }
  
    .facebook-page p {
      font-size: 1.5rem;
    }
  }
  
  @media (max-width: 768px) {
    body {
      flex-direction: column;
      padding: 20px;
    }
  
    .facebook-page {
      width: 100%;
      margin-bottom: 30px;
      text-align: center;
    }
  
    .facebook-page h1 {
      font-size: 2.5rem;
    }
  
    .facebook-page p {
      font-size: 1.2rem;
    }
  
    .login_form {
      width: 100%;
      max-width: 100%;
      padding: 30px 20px;
    }
  
    .login_form .login_option {
      flex-direction: column;
      gap: 10px;
    }
  
    .login_form .login_option .option {
      width: 100%;
    }
  
    .login_form .login_option .option a {
      margin: 15px 0;
    }
  }
  
  @media (max-width: 480px) {
    .facebook-page h1 {
      font-size: 2rem;
    }
  
    .facebook-page p {
      font-size: 1rem;
    }
  
    form button {
      font-size: 16px;
    }
  
    .login_form h3 {
      font-size: 18px;
    }
  }
  body {
    width: 100%;
    min-height: 100vh;
    padding: 0 10px;
    display: flex;
    flex-direction: row;
    background: rgba(0, 171, 88, 0.014);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Dodano, by umożliwić zawijanie */
    gap: 0px; /* Odstęp między kolumnami */
}
.facebook-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30%;
  min-width: 300px;
}

@media (max-width: 1794px) {
  body{gap:0px}
  .facebook-page{width: 40%;}
  }
  @media (max-width: 1324px) {
    body{gap:50px}
    .facebook-page{width: 45%;}
    }


.facebook-page .text {
    margin-bottom: 90px;
}

.facebook-page h1 {
    color: rgb(0, 171, 88);
    font-size: 4rem;
    margin-bottom: 10px;
    word-break: break-word;
}

.facebook-page p {
    font-size: 1.75rem;
    white-space: normal;
}

/* Responsywność */
@media (max-width: 1024px) {
    .facebook-page {
        width: 100%;
        text-align: center;
        margin-top: 20px;
        margin-bottom: -150px;
    }

    .facebook-page h1 {
        font-size: 3rem;
    }

    .facebook-page p {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    body {
        flex-direction: column;
        padding: 0px;
        gap: 0px;
    }

    .facebook-page {
      margin-top: 20px;
        width: 100%;
        text-align: center;
        margin-bottom: -20px;
    }

    .facebook-page h1 {
        font-size: 2.5rem;
    }

    .facebook-page p {
        font-size: 1.2rem;
    }

    .login_form {

        width: 100%;
        max-width: 100%;
        padding: 30px 20px;
    }

    .login_form .login_option {
        flex-direction: column;
        gap: 10px;
    }

    .login_form .login_option .option {
        width: 100%;
    }

    .login_form .login_option .option a {
        margin: 15px 0;
    }
}

@media (max-width: 480px) {
    .facebook-page h1 {
        font-size: 2rem;
    }

    .facebook-page p {
        font-size: 1rem;
    }

    form button {
        font-size: 16px;
    }

    .login_form h3 {
        font-size: 18px;
    }
}