.profile-picture-section {
    text-align: center;
    margin-bottom: 20px;
}

.profile-picture-circle {
    display: inline-block;
    width: 100px; /* or the size you want */
    height: 100px; /* or the size you want */
    border-radius: 50%;
    background-color: #f0f0f0;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.password-eye {
    cursor: pointer;
}




.password-message {
  font-family: "Inter";
  color: white;
  padding: 10px 10px;
  background-color: red;
  border-radius: 5px;
  width: 400px;
  text-align: center;
  margin-top: -30px;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 16px;
}

.update-message {
  font-family: "Inter";
  color: white;
  padding: 10px 10px;
  background-color: #29bd00;
  border-radius: 5px;
  width: 400px;
  text-align: center;
  margin-top: -30px;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 16px;
}

.profile-picture-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will cover the whole circle with the image */
}



/* Styling the file input button */
.profile-picture-label input[type='file'] {
    display: none; /* Hide the default file input */
}

.custom-profile p {
    color: black;
    font-size: 12px;
    margin-bottom: 5px;
}


.custom-profile {
    max-width: 100%;
    margin: auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.custom-profile h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.custom-profile p {
    color: black;
    margin-bottom: 20px;
    font-family: 'Inter';
    font-size: 13px;
}

.agency-details {
  max-width: 324px;
}

.custom-profile .form-section {
  display: grid!important;
  grid-template-columns: 1fr 1fr!important; /* Questo crea due colonne di uguale larghezza */
  gap: 22px;
  align-items: center;
  margin-bottom: 30px;
  margin-top: 52px !important;
}
.custom-profile .form-section label {
    text-align: left;
    padding-right: 20px;
    font-weight: 700;
    color: black;
    font-family: 'Inter';
    font-size: 14px;
}

/* Seleziona tutti gli input all'interno di un div con la classe "password-change" */
.password-change input {
	border: solid 1px #cbcbcb!important;
}

.custom-profile .form-section input[type="email"],
.custom-profile .form-section input[type="text"],
.custom-profile .form-section input[type="password"] {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: white;
    height: 40px; /* Larger height for inputs */
	font-size: 13px;
  font-family: Inter;
}

.custom-profile .form-section .button-update,
.custom-profile .form-section .button-change-password {
    grid-column: 2 / 3;
    height: 40px;
    margin-top: 10px; /* Extra space above the button */
}

.custom-profile .form-section input[type="submit"] {
  background-color: #0166E4;
	font-family: "Inter";
	font-size: 14px!important;
	font-weight: 600;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 58%!important;
  margin-left: 42%!important;
}

.custom-profile .form-section input[type="submit"]:hover {
    background-color: #004494;
}

.custom-profile .password-change {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    grid-template-columns: auto 1fr;
}

/* Additional styles as needed... */
