/* Box container */
.profile-upload-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFD700; /* χρυσό περίγραμμα */
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  text-align: center;
}

.profile-upload-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.6);
}

/* Τίτλος μέσα στο box */
.profile-box-title {
  font-weight: 700;
  font-size: 18px;
  color: #FFD700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* Preview εικόνας */
.profile-preview img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid #FFD700;
  box-shadow: 0 3px 12px rgba(0,0,0,0.5);
  object-fit: cover;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.profile-preview img:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 16px rgba(0,0,0,0.6);
}
	
/* ------------------------------
   Make all registration inputs transparent
------------------------------ */
#custom-registration-form input[type="text"],
#custom-registration-form input[type="email"],
#custom-registration-form input[type="password"] {
    background-color: transparent !important;
	border-radius: 12px; /* στρογγυλεμένες γωνίες */
    color: #fff; /* μαύρο κείμενο */
    border: 1px solid #ccc; /* αν θέλεις να φαίνεται περίγραμμα */
}

#custom-registration-form input[type="submit"] {
    background-color: #FFD700; /* χρυσό */
    color: #000;               /* μαύρο κείμενο */
    font-weight: 700;
    cursor: pointer;
    border-radius: 12px;       /* στρογγυλεμένες γωνίες */
    padding: 12px 20px;
    border: none;
    transition: all 0.3s ease; /* ομαλή μετάβαση */
}

#custom-registration-form input[type="submit"]:hover {
    background-color: #000; /* μαύρο background */
    color: #fff;            /* λευκό κείμενο */
}

/* File upload preview (προαιρετικά) */
#register_profile_picture {
    background-color: transparent !important;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 4px;
}
	
	/* Χρυσό περίγραμμα στα input fields όταν hover */
#custom-registration-form input[type="text"],
#custom-registration-form input[type="email"],
#custom-registration-form input[type="password"],
#custom-registration-form input[type="file"] {
    transition: border 0.3s ease; /* ομαλή μετάβαση */
}

#custom-registration-form input[type="text"]:hover,
#custom-registration-form input[type="email"]:hover,
#custom-registration-form input[type="password"]:hover,
#custom-registration-form input[type="file"]:hover {
    border: 2px solid #FFD700; /* χρυσό περίγραμμα */
}
	
/* ------------------------------
   Custom Registration Input Styling
------------------------------ */

.password-wrapper {
  position: relative;
}

.password-wrapper .toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #666;
  user-select: none;
}

.password-wrapper .toggle-password:hover {
  color: #111;
}
	
#bf-pass-rules{list-style:none;padding:0;margin-bottom:15px;font-size:14px;}
#bf-pass-rules li{margin:4px 0;}
#bf-pass-rules li.valid{color:lightgreen;}
#bf-pass-rules li.invalid{color:red;}
#bf-pass-strength{width:100%;height:8px;background:#333;border-radius:8px;overflow:hidden;margin-bottom:10px;}
#bf-pass-bar{height:100%;width:0%;background:red;transition:0.3s;}