body {

    margin: 0;

    font-family: 'Segoe UI', sans-serif;

    background: #760420 ;

}



.login-body {

    display: flex;

    justify-content: center;

    align-items: center;

    height: 100vh;

}



.login-box{

    background: white;

    padding: 30px;

    border-radius: 15px;

    width: 350px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.0);

}



.login-box h2{

    text-align: center;

    margin-bottom: 20px;



    color: #d4af37;        /* 🔥 gold */

    font-weight: 700;

    letter-spacing: 1px;



    text-shadow: 0 2px 6px rgba(0,0,0,0.15); /* biar elegan */

}



.login-box input{

    width: 100%;

    padding: 10px;

    margin: 10px 0;

    border-radius: 8px;

    border: 1px solid #ddd;

}



.login-box button{

    width: 100%;

    padding: 12px;

    background: #ff4d6d;

    border: none;

    color: white;

    border-radius: 10px;

    font-weight: bold;

    cursor: pointer;

}



.admin-container {

    display: flex;

    min-height: 100vh;

}



.sidebar {

    width: 220px;

    background: #ff4d6d;

    color: white;

    padding: 20px;

}



.sidebar a {

    display: block;

    color: white;

    margin: 10px 0;

    text-decoration: none;

}



.content {

    flex: 1;

    padding: 30px;

}



table {

    width: 100%;

    border-collapse: collapse;

    background: white;

    border-radius: 10px;

    overflow: hidden;

    margin-bottom: 30px;

}



th, td {

    padding: 10px;

    border-bottom: 1px solid #eee;

    text-align: center;

}



th {

    background: #ff758f;

    color: white;

}



.nav-btn {

    display: flex;

    justify-content: space-between;

    margin-top: 15px;

}



.nav-btn a {

    text-decoration: none;

    background: #ddd;

    padding: 8px 15px;

    border-radius: 8px;

}



.sidebar a {

    display: block;

    padding: 12px;

    color: white;

    text-decoration: none;

    border-radius: 8px;

    margin-bottom: 8px;

    transition: 0.3s;

}



.sidebar a:hover {

    background: rgba(255,255,255,0.2);

}



/* RESET SEDERHANA */

* {

    box-sizing: border-box;

    font-family: 'Segoe UI', Tahoma, sans-serif;

}



body {

    margin: 0;

    min-height: 100vh;

    background: #760420 ;

    display: flex;

    align-items: center;

    justify-content: center;

}



/* BOX FORM */

.member-box {

    background: #fff;

    width: 100%;

    max-width: 420px;

    padding: 30px 28px;

    border-radius: 14px;

    box-shadow: 0 15px 30px rgba(0,0,0,0.12);

}



/* JUDUL */

.member-box h2 {

    text-align: center;

    margin-bottom: 20px;

    letter-spacing: 1px;

    font-weight: 700;



    background: linear-gradient(135deg, #f7e27a, #d4af37, #b8962e);



    background-clip: text;

    -webkit-background-clip: text;



    -webkit-text-fill-color: transparent;



    text-shadow: 0 2px 8px rgba(0,0,0,0.0);

}



/* INPUT */

.member-box input[type="text"],

.member-box input[type="date"] {

    width: 100%;

    padding: 12px 14px;

    border-radius: 8px;

    border: 1px solid #ddd;

    margin-bottom: 12px;

    font-size: 14px;

    outline: none;

}



.member-box input:focus {

    border-color: #c4455f;

    box-shadow: 0 0 0 2px rgba(196,69,95,0.25);

}



/* RADIO */

.radio {

    display: flex;

    justify-content: space-between;

    margin: 12px 0 18px;

    padding: 10px;

    background: #fff0f3; /* soft pink elegan */

    border-radius: 8px;

}



.radio label {

    font-size: 14px;

    cursor: pointer;

}



/* BUTTON */

.member-box button {

    width: 100%;

    padding: 12px;

    background: linear-gradient(45deg, #8c2238, #c4455f);

    color: #fff;

    border: none;

    border-radius: 8px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;

}



.member-box button:hover {

    background: linear-gradient(45deg, #c4455f, #e05c77);

    transform: translateY(-1px);

}



/* NAVIGASI */

.nav-btn {

    margin-top: 18px;

    display: flex;

    justify-content: space-between;

}



.nav-btn a {

    text-decoration: none;

    font-size: 13px;

    color: #8c2238;

    font-weight: 600;

}



.nav-btn a:hover {

    text-decoration: underline;

}



