/* Structure principale */
.urm {
    max-width: 500px;
    margin: 0 auto;

}

.urm-form {
    background: #fff;
    padding: 20px;
}

/* Champs de formulaire */
.urm-field {
    margin-bottom: 20px;
	
}

.urm-field label {
    display: block;
    margin-bottom: 2px;
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  text-transform: none;
  font-size: 15px;
  line-height: 1.5;
}

.urm-span-option {

    color: #888 !important;

}

#urm_login, #urm_password {
    background-color: #fff;
	height: 40px !important;
}

.urm-req {
    color: #aaa;
}

.urm-field input[type="text"],
.urm-field input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 15px;
}

.urm-field input[type="text"]:focus,
.urm-field input[type="password"]:focus {
    border-color: #000;
    outline: none;
}

/* 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;
}

.urm-toggle-password:hover {
    color: #666;
}

/* Checkbox remember me */
.urm-rememberme {
    display: flex;
    align-items: center;
	margin-bottom: 5px!important;
}

.urm-rememberme input {
    margin-right: 8px;
}

/* Groupe de boutons */
.urm-button-group {
    display: flex;
    gap: 10px;
}


/* Boutons */
.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-login {
    background: #000!important;
    color: white;

}

.urm-button-register {
    background: #eee;
    color: #666;
		-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-register:hover {
    background: #e5e5e5;
}

/* Liens */
.urm-links {
    text-align: center;
    margin-top: 15px;
}

.urm-forgot-password {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.urm-forgot-password:hover {
    color: #666;
    text-decoration: none!important;
    font-size: 14px;
}

.urm-forgot-password:hover {
    text-decoration: underline;
}