/* CSS untuk formulir frontend */

.sistamora-form-container {
    width: 100%;
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.sistamora-form-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.sistamora-form-field {
    margin-bottom: 20px;
}

.sistamora-form-field label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.sistamora-form-field input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.sistamora-form-submit input {
    width: 100%;
    padding: 12px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.sistamora-form-submit input:hover {
    background-color: #005a87;
}

.sistamora-message {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 5px;
}

.sistamora-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.sistamora-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Gaya untuk formulir multi-langkah */
.sistamora-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.sistamora-step {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-bottom: 2px solid #ddd;
    color: #999;
}

.sistamora-step.active {
    border-bottom-color: #0073aa;
    color: #0073aa;
    font-weight: bold;
}

.sistamora-step-content {
    display: none;
}

.sistamora-step-content.active {
    display: block;
}

/* Dashboard Styles */
.sistamora-dashboard-container {
    display: flex;
    margin-top: 30px;
    gap: 20px;
    align-items: flex-start;
}

.sistamora-dashboard-nav {
    flex: 0 0 200px;
}

.sistamora-dashboard-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.sistamora-dashboard-nav li a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #ddd;
}

.sistamora-dashboard-nav li:last-child a {
    border-bottom: none;
}

.sistamora-dashboard-nav li a.active,
.sistamora-dashboard-nav li a:hover {
    background-color: #0073aa;
    color: #fff;
}

.sistamora-dashboard-content {
    flex: 1;
}

.sistamora-dashboard-content h2,
.sistamora-dashboard-content h3 {
    margin-top: 0;
}
