/*Untuk setting halaman agar rata dengan layar*/
.navbar {
    justify-content: flex-end;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    font-family: arial;
    gap: 20px;
}
.menu {
    display: flex;
    gap: 30px;
    font-family: arial;
    justify-content:flex-end
}
/* mengatur warna dan efek ketika mouse diarahkan ke link menu */
.menu a:hover { 
    transition: 0.3s;
    text-decoration: underline;
    color:blue;
}

.isi-content {
    border: none;
    height: 600px;
    width: 600px;
    font-family: "algerian", serif;
    padding: 30px;
    text-align: left;
}
.content-2 {
    border: none;
    text-align: left;
}


        .container {
            width: 90%;
            max-width: 1100px;
            margin: 40px auto;
        }

        .judul {
            text-align: center;
            margin-bottom: 30px;
        }

        .judul h2 {
            color: #176b5b;
            font-size: 30px;
            margin-bottom: 10px;
        }

        .judul p {
            color: #666;
            font-size: 16px;
        }

        /* Kartu anggota */
        .anggota-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .anggota {
            background: white;
            padding: 25px 20px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
            transition: 0.3s;
            border-top: 5px solid #176b5b;
        }

        .anggota:hover {
            transform: translateY(-7px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
        }

        .nomor {
            width: 55px;
            height: 55px;
            margin: 0 auto 15px;
            border-radius: 50%;
            background: #176b5b;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 22px;
            font-weight: bold;
        }

        .anggota h3 {
            color: #333;
            font-size: 18px;
            line-height: 1.5;
        }

        /* Informasi kelompok */
        .informasi {
            background: white;
            margin-top: 35px;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .informasi h3 {
            color: #176b5b;
            margin-bottom: 12px;
            font-size: 23px;
        }

        .informasi p {
            color: #555;
            line-height: 1.7;
        }

        /* Tombol kembali */
        .kembali {
            text-align: center;
            margin: 35px 0;
        }

        .kembali a {
            display: inline-block;
            background: #176b5b;
            color: white;
            text-decoration: none;
            padding: 13px 25px;
            border-radius: 8px;
            font-weight: bold;
            transition: 0.3s;
        }

        .kembali a:hover {
            background: #0f4e43;
            transform: scale(1.05);
        }

        /* Footer */
        footer {
            background: #176b5b;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
        }

        footer p {
            font-size: 14px;
        }

        /* Tampilan HP */
        @media (max-width: 600px) {

            header h1 {
                font-size: 25px;
            }

            nav a {
                display: block;
                margin: 8px auto;
                max-width: 250px;
            }

            .judul h2 {
                font-size: 25px;
            }
        }

* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

  body {
    min-height: 100vh;
    background: linear-gradient(135deg, #e8f5f2, #f5f1e8);
    color: #333;
        }

        /* Header */
        header {
            background: #176b5b;
            color: white;
            text-align: center;
            padding: 30px 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }

        header h1 {
            font-size: 32px;
            margin-bottom: 8px;
        }

        header p {
            font-size: 17px;
        }

        /* Menu Navigasi */
        nav {
            background: white;
            padding: 15px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        nav a {
            display: inline-block;
            text-decoration: none;
            color: #176b5b;
            font-weight: bold;
            margin: 5px 8px;
            padding: 10px 18px;
            border-radius: 8px;
            transition: 0.3s;
        }

        nav a:hover {
            background: #176b5b;
            color: white;
        }

        /* Konten utama */


        .form-container {
    background-color: #ffffff;
    padding: 30px;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-group label {
    font-weight: normal;
}

.btn-kirim,
.btn-reset {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.btn-kirim {
    background-color: #198754;
    color: white;
}

.btn-reset {
    background-color: #6c757d;
    color: white;
}