@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
:root {
  
  color: #669933;
  font-size: 42.5%;
}

.user{
  padding: 50px;
}

.user p2{
  font-size: 14px;
  margin-right: 20px;
}
  
  * {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
  }
  
  h1,
  h2,
  h3,
  h4 {
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 4rem;
    color: #669933;
    margin-bottom: 5rem;
  }
  

  
  h2 {
    font-size: 3.2rem;
    margin-bottom: 4rem;
    font-weight: 700;
  }
  
  h3 {
    font-size: 3rem;
    font-weight: 500;
  }
  
  /* UTILITIES */
  
  .container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem;
  }
  
  .container > * {
    width: 100%;
  }
  
  .flex-column {
    display: flex;
    flex-direction: column;
  }
  
  .flex-center {
    justify-content: center;
    align-items: center;
  }

  .flex-center img {
    padding: 10px;
  }
  
  .justify-center {
    justify-content: center;
  }
  
  .text-center {
    text-align: center;
  }
  
  .hidden {
    display: none;
  }
  
  /* BUTTONS */
  .btn {
    font-size: 1.8rem;
    padding: 1rem 0;
    width: 20rem;
    text-align: center;
    border: 0.2rem solid #669933;
    margin-bottom: 1rem;
    text-decoration: none;
    color: #669933;
    background-color: white;
  }
  
  .btn:hover {
    cursor: pointer;
    box-shadow: 0 0.4rem 1.4rem 0 rgba(86, 185, 235, 0.5);
    transform: translateY(-0.1rem);
    transition: transform 150ms;
  }
  
  .btn[disabled]:hover {
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
  }
  
  /* FORMS */
  form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  input {
    margin-bottom: 1rem;
    width: 20rem;
    padding: 1.5rem;
    font-size: 1.8rem;
    border: none;
    box-shadow: 0 0.1rem 1.4rem 0 rgba(86, 185, 235, 0.5);
  }
  
  input::placeholder {
    color: #aaa;
  }


  /* SWITCH MODE */
  .toggle-switch {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
}

.toggle-switch input {
    display: none; /* Hide the default checkbox */
}

.slider {
    width: 60px;
    height: 34px;
    background-color: #ccc;
    border-radius: 34px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s;
}

.slider:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.2s;
}

input:checked + .slider {
    background-color: #4caf50; /* Color when checked */
}

input:checked + .slider:before {
    transform: translateX(26px); /* Move the circle to the right */
}


.container {
  width: 90%; /* Allow some margin on small devices */
  max-width: 600px; /* Maximum width */
  padding: 20px; /* Padding around the content */
  text-align: center; /* Center text */
}

.success-icon {
  margin-bottom: 20px; /* Space between icon and text */
}

.success-icon img {
  width: 25rem; /* Adjust size as needed */
  height: auto; /* Maintain aspect ratio */
}

h2, p1 {
  margin: 10px 0; /* Add some spacing between elements */
}


@media (max-width: 600px) {
  .success-icon img {
      width: 15rem; /* Smaller icon on mobile */
  }

  h3 {
      font-size: 1.5rem; /* Adjust heading size */
  }

  p1 {
      font-size: 1rem; /* Adjust paragraph size */
  }

  .btn {
      padding: 10px 15px; /* Adjust button padding */
  }
}