body {
    font-family: 'Poppins', sans-serif;
    background-color: #1b1b1b;
    color: white;
    padding: 20px;
}

.reg-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 30px;
    background-color: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 0 20px #6cff64;
    text-align: center;
}

/* Profile picture section */
.profile-picture {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
    box-shadow: 0 0 5px #6cff64;
    border-radius: 50%;
}
#profile_image {
    display: none;
}

.profile-picture img {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    object-fit: cover;
    padding:5%;
}

.upload-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    background: white;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

/* Input fields */
.reg_name,
.reg_email,
.reg_contact,
.reg_pass {
    width: 95.5%;
    color: white;
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 8px;
}

/* Submit button */
.reg_submit {
    background-color: #6cff64;
    color: black;
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    border: none;
}

.reg_submit:hover {
    background-color: #58d455;
}

a {
  color: #6cff64; /* Your brand green */
  text-decoration: none;
}

/* Hover effect */
a:hover {
  color: #4df34a;
  text-decoration: underline;
}

/* Visited links (optional) */
a:visited {
  color: #58e954;
}