/* Structure principale */
.urm-register {
    max-width: 500px;
    margin: 0 auto;
    background: #f5f7fa;
    padding-top: 0px;
padding-right: 20px;
padding-bottom: 20px;
padding-left: 20px;
text-align: left;
  /*   border-radius: 3px;
   box-shadow: 0 1px 3px rgba(0,0,0,0.1);*/
}

.urm-field {
    margin-bottom: 10px;
    position: relative;
}


.urm-field-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
	  gap: 5px; 
	  flex-wrap: wrap;
}

.urm-field label {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0; /* Enlève la marge basse pour l'alignement */
}



.urm-field-icon {
    margin-right: 8px;
    color: #666;
}

/* Champs de formulaire */
.urm-field input[type="text"],
.urm-field input[type="email"],
.urm-field input[type="tel"],
.urm-field input[type="password"],
.urm-field input[type="number"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 15px;
    box-sizing: border-box;
	background-color: #fff!important;
		height: 40px !important;
}

.urm-field input:focus {
    border-color: #000;
    outline: none;
}

/* Boutons radio et checkbox */
.urm-radio-group,
.urm-checkbox-label {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.urm-radio-label,
.urm-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.urm-radio-checkmark,
.urm-checkbox-checkmark {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    border: 1px solid #ddd;
    border-radius: 50%;
    position: relative;
}

.urm-checkbox-checkmark {
    border-radius: 3px;
}

.urm-radio-label input:checked + .urm-radio-checkmark::after,
.urm-checkbox-label input:checked + .urm-checkbox-checkmark::after {
    content: "";
    position: absolute;
    display: block;
}

.urm-radio-label input:checked + .urm-radio-checkmark::after {
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
    top: 3px;
    left: 3px;
}

.urm-checkbox-label input:checked + .urm-checkbox-checkmark::after {
    width: 12px;
    height: 6px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(-45deg);
    top: 3px;
    left: 2px;
}

/* Champ mot de passe */
.urm-field-area-password {
    position: relative;
}

.urm-toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    cursor: pointer;
    height: 20px;
    display: flex;
    align-items: center;
}


/* Boutons */
.urm-button-group {
    display: flex;
    gap: 10px;
}

.urm-button {
    padding: 12px 20px;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    flex: 1;
}

.urm-button-register {
    background: #000 !important;
    color: white;
}

.urm-button-login {
    background: #eee!important;
    color: #666!important;
	-webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
}

/*
.urm-button-login:hover {
    background: #e5e5e5;
}
/*
/* Obligatoire */
.urm-req {
    color: #aaa;
    margin-left: 3px;
}

/* Style pour l'icône d'info */
.urm-tip {
    color: #6c757d;
    cursor: pointer;
    margin-left: 5px;
    transition: color 0.2s;
}

.urm-tip:hover {
    color: #000;
}

.urm-tip i {
    font-size: 16px;
}

/* Style pour le texte d'aide du mot de passe */
.urm-password-help {
    margin: 8px 0;
    padding: 10px 12px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 3px;
    font-size: 13px;
    color: #495057;
    animation: fadeIn 0.2s ease;
}

.urm-help-text {
    font-style: italic;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


.urm-company-fields{
	
 padding-top: 10px;	
	
	
}

#urm_company_name_part{
	
margin-bottom:20px;	
}


#urm_company_name{
	
margin-bottom:20px;	
}


.urm-required-notice {

    margin-top: -15px;
margin-bottom:20px;	
    display: flex;
    justify-content: right;
}

.urm-required-icon {
    color: #ff6b6b;
    font-weight: bold;
    font-size: 14px;
}

.urm-required-text {
    font-size: 12px;
    font-style: italic;
    color: #666;
}


/* Modale reCAPTCHA v2 */
#recaptcha-v2-modal .modal_content {
    max-width: 400px; /* Augmenté de 300px à 400px */
    width: 90%; /* Pour mobile */
    padding: 30px 20px;
}

/* Centrer le widget reCAPTCHA */
#recaptcha-v2-widget {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    min-height: 78px;
    transform: scale(1.1); /* Optionnel: agrandit légèrement le widget */
    transform-origin: center;
}