/* === ASPERKONI Membership Plugin Styles === */

/* Form Pendaftaran */
.asperkoni-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border: 2px solid #0066cc;
    border-radius: 8px;
    font-family: Arial, sans-serif;
}

.asperkoni-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #333;
}

.asperkoni-form input[type="text"],
.asperkoni-form textarea,
.asperkoni-form input[type="file"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.asperkoni-form button {
    background: #0066cc;
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s ease;
}

.asperkoni-form button:hover {
    background: #004999;
}

/* Preview Foto Direktur */
#photo_preview {
    margin-top: 10px;
    text-align: center;
}

#photo_preview img {
    max-width: 150px;
    border: 2px solid #ccc;
    border-radius: 6px;
    padding: 5px;
    background: #fff;
}

/* Konfirmasi Pendaftaran */
.asperkoni-confirm {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #e6f0ff;
    border: 2px solid #0066cc;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    animation: fadeIn 0.8s ease;
}

.asperkoni-confirm h3 {
    margin-top: 0;
    color: #004999;
}

.asperkoni-confirm ul {
    list-style: none;
    padding: 0;
}

.asperkoni-confirm ul li {
    margin-bottom: 6px;
    font-size: 14px;
}

.asperkoni-confirm a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.asperkoni-confirm a:hover {
    background: #004999;
}

/* Halaman Verifikasi */
.asperkoni-verify {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #fdfdfd;
    border: 2px solid #28a745;
    border-radius: 8px;
    font-family: Arial, sans-serif;
}

.asperkoni-verify h3 {
    margin-top: 0;
    color: #28a745;
}

.asperkoni-verify ul {
    list-style: none;
    padding: 0;
}

.asperkoni-verify ul li {
    margin-bottom: 6px;
    font-size: 14px;
}

.asperkoni-verify img {
    max-width: 150px;
    border: 2px solid #ccc;
    border-radius: 6px;
    padding: 5px;
    background: #fff;
}

/* Animasi */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}