/* General Reset */
body, h1, p, form, input, button, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #000; /* Black background */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  a {
    text-decoration: none;
    color: #fff;
  }
  
  /* Layout */
  .login-container {
    display: flex;
    width: 800px;
    background: #000000; /* Dark gray panel */
    border-radius: 8px;
    overflow: hidden;
  }
  
  .login-form,
  .signup-section {
    padding: 32px;
  }
  
  .login-form {
    flex: 2;
    border-right: 1px solid #333;
  }
  
  .signup-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  /* Typography */
  h1 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 16px;
  }
  
  p {
    font-size: 14px;
    margin-bottom: 24px;
  }
  
  /* Inputs and Buttons */
  form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
  }
  
  form input {
    width: 50%;
    padding: 12px;
    margin-bottom: 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    background-color: #151515;
    color: #fff;
  }
  
  .password-wrapper {
    position: relative;
  }
  
  .password-wrapper input {
    padding-right: 40px;
  }
  
  .show-password {
    position: relative;
    right: 8px;
    top: 50%;
    transform: translateY(-200%);
    cursor: pointer;
  }
  
  .btn {
    width: 50%;
    padding: 12px;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
  }
  
  .primary-btn {
    background-color: #ff4848; /* Red */
    color: #fff;
  }
  
  .secondary-btn {
    background-color: #333;
    color: #fff;
    margin-top: 8px;
  }
  
  .tertiary-btn {
    background-color: transparent;
    border: 2px solid #ff4848;
    color: #ffffff;
    margin-top: 16px;
  }
  
  .forgot-password {
    display: block;
    font-size: 11px;
    margin: 16px 0;
    text-align: left;
    color: #666666;
  }
  
  /* Right Panel - Sign Up */
  .signup-section .btn {
    width: auto;
    padding: 8px 24px;
  }
  
  .apple-icon {
    font-size: 16px;
    margin-right: 8px;
  }
  .apple-button {
    background-color: #ffffff; /* White background */
    color: #000000; /* Black text */
    border: 1px solid #ccc; /* Optional: Light gray border for visibility */
    font-size: 14px;
    font-weight: bold;
    padding: 12px 16px;
    width: 50%;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .apple-button:hover {
    background-color: #f2f2f2; /* Slightly darker white on hover */
    color: #000; /* Ensure text stays black */
  }


  /* Email and Password Fields */
input[type="text"], input[type="password"] {
    border-radius: 16px; /* Rounded corners */
    font-size: 10px; /* Optional: Larger font size */
    padding: 10px;
    border: 1px solid transparent;
    outline: none;
  }

  
  /* Buttons (General) */
  button {
    border-radius: 14px; /* Rounded corners */
    font-size: 14px;
    padding: 12px 16px;
    cursor: pointer;
  }
  
  /* Specific Styling for "Sign in with Apple" Button */
  .apple-button {
    background-color: #fff;
    color: #000;
    border: 1px light #ccc;
    font-family: "Roboto Mono", monospace; /* Roboto Mono font */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px; /* Space between icon and text */
    border-radius: 16px; /* Rounded corners */
    padding: 12px 16px;
  }
  
  .apple-button:hover {
    background-color: #f2f2f2; /* Light gray on hover */
  }
  
  /* Forgot Password */
  .forgot-password {
    font-family: "Roboto Mono", monospace; /* Roboto Mono font */
    font-size: 11px; /* Optional: Adjust size */
    color: #666666; /* Optional: Blue color */
    text-decoration: none;
  }
  
  .forgot-password:hover {
    text-decoration: underline;
  }
  
  /* "New to RA?" Text */
  .new-to-ra {
    font-size: 20px; /* Increase font size */
    font-weight: bold;
    margin-top: 30px; /* Optional: Add spacing above */
  }
  .right-panel {
    padding-left: 100px; /* Add space between the dividing line and the content */
  }

  label[for="email"],
label[for="password"] {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px; /* Adjust size as needed */
}

  
  
  