/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Mono', monospace;
}

body {
    min-height: 100vh;
    background-color: #000;
    color: #41a900;
  }
  
.container {
    display: flex;
    min-height: 100vh;
}

/* Login Section */
.login-section {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #000;
}

/* Signup Section */
.signup-section {
    flex: 0 0 35%;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #111;
    position: relative;
    border-left: 1px solid rgba(65, 169, 0, 0.2);
}

.form-container {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

/* Typography */
h1, h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #41a900;
  }
  
p {
    color: #41a900;
    margin-bottom: 30px;
    opacity: 0.8;
  }
  
/* Form Elements */
  form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 25px;
    border: 1px solid #41a900;
    background-color: transparent;
    color: #41a900;
    outline: none;
    transition: border-color 0.3s ease;
  }
  
  input::placeholder {
    color: #41a90088;
  }
  
input:focus {
    border-color: #41a900;
    box-shadow: 0 0 0 2px rgba(65, 169, 0, 0.1);
}

/* Buttons */
button {
    cursor: pointer;
    transition: all 0.3s ease;
}

.signin, .signup {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    border: none;
    font-weight: bold;
    font-size: 16px;
    margin-top: 10px;
}

.signin {
    background-color: #41a900;
    color: #000;
}

.signup {
    background-color: #41a900;
    color: #000;
    margin-top: 0;
}

.signin:hover, .signup:hover {
    background-color: #347d00;
    transform: translateY(-1px);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #41a900;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
  
    .login-section,
    .signup-section {
        padding: 40px 20px;
    }

    .signup-section {
        flex: 0 0 auto;
        border-left: none;
        border-top: 1px solid rgba(65, 169, 0, 0.2);
    }

    .form-container {
        max-width: 100%;
    }
  }
  