/* ===== Global Style ===== */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(to right, #e6f2ff, #ffffff);
    margin: 0;
    padding: 0;
    color: #003366;
}

/* ===== Container Form ===== */
form {
    width: 600px;
    margin: 40px auto;
    background-color: #ffffff;
    border: 2px solid #3399ff;
    border-radius: 10px;
    padding: 20px 30px;
    box-shadow: 0px 4px 10px rgba(0, 51, 102, 0.2);
}

/* ===== Table Style ===== */
table {
    width: 100%;
    border-collapse: collapse;
}

td {
    padding: 10px;
    vertical-align: middle;
    color: #003366;
    font-weight: bold;
}

/* ===== Input & Select ===== */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="password"],
input[type="username"],
input[type="name"],
select {
    width: 100%;
    padding: 8px;
    border: 1px solid #3399ff;
    border-radius: 5px;
    background-color: #f9fcff;
    color: #003366;
    font-size: 14px;
    transition: 0.3s;
}

input:focus,
select:focus {
    border-color: #0066cc;
    outline: none;
    box-shadow: 0px 0px 5px rgba(0, 102, 204, 0.5);
}

/* ===== Button ===== */
button {
    background-color: #0066cc;
    color: #ffffff;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #004080;
}

/* ===== Link Style ===== */
a {
    text-decoration: none;
    color: #0066cc;
    font-weight: bold;
    transition: 0.3s;
}

a:hover {
    color: #004080;
    text-decoration: underline;
}

/* ===== Title (Optional) ===== */
h2 {
    text-align: center;
    color: #003366;
    margin-bottom: 20px;
}