/*
** Joomla 3
** Keep field labels with descriptions right justified
*/
@media(min-width:767px)
{
  form.form-horizontal .control-label label,
  form.form-horizontal .control-label
  {
  text-align: right !important;
  }
}

/*
** For Joomla 4 & 5 
*/
@media(min-width:767px)
{
  .form-control-label
  {
    display: block;
    text-align: right;
  }
  
  .osm-captcha-container .form-control-label
  {
    display: block;
    text-align: right;
  }
}


/*
** My Profile page buttons
*/
.form-actions .btn-primary
{
  color: #0536fa;
  background-color: #fff;
  border: 2px solid #0536fa;
  border-radius: 0.25rem;
  padding:0.375rem 0.75rem;
  font-size:1em;
  line-height: normal;
}

.form-actions .btn-primary:hover 
{
  color: #fff;
  background-color: #0536fa;
}

button.btn.btn-secondary
{
  border: 2px solid #0536fa;
  border-radius: 0.25rem;
}
button.btn.btn-primary
{
  border: 2px solid #0536fa;
  border-radius: 0.25rem;
}

/*
** round the corners on the text fields
*/
eb-form-control .form-control
{
  border: 2px solid #0536fa;
  border-radius: 0.50rem;
}

/*
** Set the max-width for fields instead of 100%
*/
.eb-form-control .form-control
{
  max-width: 220px;
}

.eb-form-control .form-select
{
  max-width: 220px;
}