
body {
    background-image: url('image/signups.jpeg');
    background-size: cover;
    color: white;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin: 0;
    padding: 0;
  }
  
  .container {
    max-width: 500px;
    max-height: 100%;
    margin:65px auto;
    padding: 20px;
    background-color: #00263b;
    box-shadow: 0 2px 4px gold;
    border-radius: 5px;
  }
  
  h2 {
    text-align: center;
    color: maroon;
    margin-bottom: 20px;
  }
  
  /* Center the title */
.centered-title {
  text-align: center;
}

.centered-title .special-char {
  color: orangered; /* or any color you prefer for the special characters */
}

/* Rest of the CSS remains unchanged */

  label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="password"] {
    width: 100%;
    padding: 8px;
    border: 1px solid blue;
    margin-bottom: 10px;
    border: 1px solid auto;
    border-radius: 4px;
  }
  
  #button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #4285F4;
    color: #FFFFFF;
    border: 1px solid blue;
    font-size: 16px;
    cursor: pointer;
  }
  
  /* Add additional styling for login section */
  .login-section {
    text-align: center;
    margin-top: 20px;
  }
  
  .login-section a {
    color: #4285F4;
    text-decoration: none;
  }
  

 
  /* Center the title and make it bigger and bold */
.centered-title {
  text-align: center;
  font-size: 46px; /* Adjust the font size as needed */
  font-weight: bold;
}

.centered-title .special-char {
  color: orangered; /* or any color you prefer for the special characters */
}
  /* Additional styles for password guidance */
  .password-guidance {
    margin-bottom: 10px;
    color: black;

  }
  
  /* Additional styles for referral code */
  #referral {
    background-color: #F9F9F9;
  }
  
  /* Additional styles for form fields on focus */
  input:focus {
    outline: none;
    border-color: #4285F4;
  }

   /* Media query for logo responsiveness */
   @media screen and (max-width: 768px) {
    .logo {
      max-width: 100%;
      height: auto;
    }
  }
   strong {
    color: orangered;
   } 
   
   checkbox style */
        input[type="checkbox"] {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border: 1px solid #ccc;
            border-radius: 3px;
            outline: none;
            vertical-align: middle;
            cursor: pointer;
        }

        input[type="checkbox"]:checked {
            background-color: #2196F3;
            border: 1px solid #2196F3;
        }

        label[for="termsAgreement"] {
            display: inline-block;
            vertical-align: middle;
            margin-left: 5px;
        }
        
        .terms-policy {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px; /* Adjust margin as needed */
        }
        
        checkbox style */
        input[type="checkbox"] {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border: 1px solid #ccc;
            border-radius: 3px;
            outline: none;
            vertical-align: middle;
            cursor: pointer;
        }

        input[type="checkbox"]:checked {
            background-color: #2196F3;
            border: 1px solid #2196F3;
        }

        label[for="termsAgreement"] {
            display: inline-block;
            vertical-align: middle;
            margin-left: 5px;
        }
        /* Password rule styling */
#passwordRules {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#passwordRules li {
  margin-bottom: 10px;
  font-size: 14px;
  padding-left: 24px;
  position: relative;
}

/* Default styling for invalid rules */
#passwordRules .invalid {
  color: red;
}

/* Styling for valid rules with blue checkmark */
#passwordRules .valid {
  color: green;
}

/* Add a blue checkmark for valid rules */
#passwordRules .valid::before {
  content: '\2713';  /* Unicode for checkmark */
  position: absolute;
  left: 0;
  top: 0;
  color: blue;
}

/* Add a red alert icon for invalid rules */
#passwordRules .invalid::before {
  content: '\26A0'; /* Unicode for warning sign */
  position: absolute;
  left: 0;
  top: 0;
  color: red;
}
footer {
  background-color: #1a1a2e; /* Dark background for contrast */
  color: #ffffff; /* White text for readability */
  padding: 20px;
  text-align: center; /* Centers the text inside the footer */
  position: relative; /* Ensures the footer is positioned properly */
  bottom: 0;
  width: auto; /* Full-width footer */
  box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

footer a {
  color: #ffcc00; /* Accent color for links */
  text-decoration: none; /* Remove underline */
  margin: 0 5px; /* Spacing between links */
}

footer a:hover {
  text-decoration: underline; /* Adds underline on hover */
}

footer p {
  margin: 10px 0; /* Proper spacing for paragraph */
  font-size: 16px; /* Adjust font size for readability */
}

@media screen and (max-width: 768px) {
  footer p {
    font-size: 14px; /* Slightly smaller text for smaller screens */
  }

  footer a {
    display: inline-block; /* Links stack neatly */
    margin: 10px 0; /* Proper spacing between stacked links */
  }
}
