/* ============================================
   Employee Registration Form - Styles
   ============================================ */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f0f2f5;
    padding: 20px;
    color: #333;
}

.form-container {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #1a73e8;
    margin-bottom: 30px;
    border-bottom: 2px solid #e8f0fe;
    padding-bottom: 10px;
}

.section-title {
    background: #1a73e8;
    color: #fff;
    padding: 12px 15px;
    margin: 25px 0 15px 0;
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 18px;
}

label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    font-size: 14px;
}

input[type=text],
input[type=date],
input[type=number],
select,
input[type=file] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccd0d5;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 14px;
    transition: border 0.3s;
}

input:focus,
select:focus {
    border-color: #1a73e8;
    outline: none;
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.row .form-group {
    flex: 1;
    min-width: 250px;
}

.photo-section {
    background: #f8f9fa;
    border: 2px dashed #ccd0d5;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.btn-submit {
    width: 100%;
    background: #28a745;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #218838;
}

.message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
}

.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.hint {
    font-size: 12px;
    color: #65676b;
    margin-top: 4px;
}

.account-input-group {
    display: flex;
    align-items: center;
    gap: 5px;
}

#bank_prefix {
    background: #eee;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-weight: bold;
}
/* Estilos para la navegación interna */
.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.btn-nav {
    background: #1a73e8;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-nav:hover {
    background: #1557b0;
}

.user-info {
    font-size: 14px;
}

.logout-link {
    color: #d93025;
    text-decoration: none;
    font-weight: bold;
    margin-left: 15px;
}

.logout-link:hover {
    text-decoration: underline;
}