* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
  }

  body {
  background: linear-gradient(-45deg, #007cf0, #00dfd8, #007cf0, #00dfd8);
  background-size: 400% 400%;
  animation: gradientMove 10s ease infinite;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  }

  @keyframes gradientMove {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
  }


  .container {
    background: rgba(255, 255, 255, 1);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    position: relative;
  }

  .log-sign {
    display: flex;
    border: #333 1px solid;
    border-radius: 10px;
    margin: 5px 5px 30px 5px;
  }

  input[type="radio"] {
    display: none;
  }

  #login-btn {
    background-color: #007cf0;
    color: white;
  }

  #sign-btn {
    background-color: white;
    color: black;
  }

  .container h2 {
    text-align: center;
    color: #007cf0;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
  }

  #signupForm {
    display: none;
  }

  .login-group {
    margin-bottom: 1.7rem;
    position: relative;
  }

  .signup-group {
    margin-bottom: .5rem;
    position: relative;
  }

  label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
  }

  input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
  }


  input::placeholder {
      color: rgba(0, 0, 0, 0.5);
      font-size: 15px;
  }

  .eye {
    cursor: pointer;
  }

  #logOpen {
    position: absolute;
    right: 8px;
    top: 11px;
    display: block;
    width: 23px;
    height: 23px;
    z-index: 3;
  }

  #logClosed {
    position: absolute;
    right: 8px;
    top: 11px;
    display: none;
    width: 23px;
    height: 23px;
    z-index: 3;
  }

  #firstOpen {
    position: absolute;
    right: 8px;
    top: 11px;
    display: block;
    width: 23px;
    height: 23px;
    z-index: 3;
  }

  #firstClosed {
    position: absolute;
    right: 8px;
    top: 11px;
    display: none;
    width: 23px;
    height: 23px;
    z-index: 3;
  }

  #secOpen {
    position: absolute;
    right: 8px;
    top: 11px;
    display: block;
    width: 23px;
    height: 23px;
    z-index: 3;
  }

  #secClosed {
    position: absolute;
    right: 8px;
    top: 11px;
    display: none;
    width: 23px;
    height: 23px;
    z-index: 3;
  }

  #invalidPass
  {
    color: red;
    font-size: 10px;
    display: none;
  }

  #passwordError
  {
    color: red;
    font-size: 10px;
    display: none;
  }

  #conPassError
  {
    color: red;
    font-size: 10px;
    display: none;
  }

  button {
    width: 100%;
    padding: 0.75rem;
    background-color: #007cf0;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  button:hover {
    background-color: #005fc1;
  }

  .login-footer {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
  }

  .login-footer a {
    color: #007cf0;
    text-decoration: none;
    cursor: pointer;
  }

  @media (max-width: 480px) {
    .login-container {
      padding: 1.5rem;
    }
  }