/* ===== GENERAL ===== */
#nppRegisterForm {
    max-width: 500px;
    margin: 40px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    font-family: Arial, sans-serif;
}

#nppRegisterForm h3 {
    margin-bottom: 10px;
    color: #333;
}

/* Inputs */
#nppRegisterForm input,
#nppRegisterForm select,
#nppRegisterForm textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.2s;
}

#nppRegisterForm input:focus,
#nppRegisterForm select:focus,
#nppRegisterForm textarea:focus {
    border-color: #0073aa;
    outline: none;
}

/* Checkbox */
#nppRegisterForm label {
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

/* Button */
#nppRegisterForm button {
    width: 100%;
    padding: 12px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

#nppRegisterForm button:hover {
    background: #005f8d;
}

/* Sections */
.student-box,
.preceptor-box {
    margin-top: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

/* ===== DIRECTORY ===== */

.np-directory {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.np-directory .card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    text-align: center;
    transition: 0.3s;
}

.np-directory .card:hover {
    transform: translateY(-5px);
}

.np-directory h3 {
    margin-bottom: 8px;
    color: #333;
}

.np-directory p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

/* Badge */
.np-directory span {
    display: inline-block;
    margin: 10px 0;
    color: green;
    font-weight: bold;
}

/* Button */
.np-directory button {
    padding: 10px 15px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.np-directory button:hover {
    background: #218838;
}