/* =======================
Tombol
========================== */
label {
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3)
}
.labelspan {
    font-size: 14px;
    font-weight:bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3)
}

button {
    padding: 5px 10px;
    background-color: #1388e8;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;    
    transition: background-color 0.2s ease;
}

button:hover {
    background-color: #0a652f;
}
button:disabled {
    background-color: silver;
    cursor: not-allowed;
  
}


button:active {
    background-color: #1a80c1; /* Warna lebih gelap saat tombol ditekan */
    transform: scale(0.98); /* Memberikan efek sedikit mengecil */
}


select {
    padding: 8px 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

select:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0 0 5px rgba(0,123,255,0.5);
}


input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="tel"] {
    width: 100%;
    padding: 8px 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}
input::placeholder {
  font-size: 10px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0 0 5px rgba(0,123,255,0.4);
}
