/* Style pour toutes les pages */

/* ===== FORMULAIRES ===== */

form {
    display: flex;
    flex-direction: column;
    /* gap: 16px; */
}

form h1 {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 25px;
}

form label {
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
    display: block;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="number"],
form input[type="date"],
form select,
form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.2s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
    border-color: #1a73e8;
    outline: none;
    box-shadow: 0 0 4px rgba(26, 115, 232, 0.3);
}

form textarea {
    resize: vertical;
    min-height: 80px;
}

form button {
    /* background: linear-gradient(90deg, #1a73e8, #0b59c8); */
    background-color: #0072c6;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

/*
form button:hover {
    background: linear-gradient(90deg, #0b59c8, #0643a8);
} */


.step.hide-text {
    color: transparent;
    white-space: nowrap;
}

.sidebar.closeSideBar {
    width: 20px;
}

.content {
    padding: 40px;
}

.btn-search {
    background-color: #ccc;
}
