body {
    font-family: 'Arial', sans-serif;
    background: #121212;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 450px;
    margin: 10px auto;
    padding: 20px;
    background: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}
h2 {
    margin-bottom: 10px;
}
img {
    margin-bottom: 15px;
    max-width: 100%;
}
p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #bbb;
}
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.form-group {
    width: 75%;
    margin-bottom: 10px;
    text-align: center;
}
.form-group label {
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
}
.form-group input {
    width: 100%;
    padding: 10px;
    border: 2px solid #444;
    border-radius: 5px;
    background: #222;
    color: white;
    box-sizing: border-box;
}
button {
    background: #ffba00;
    color: #333;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    width: 50%;
    margin-top: 10px;
}
button:hover {
    background: #e0a800;
}
.error {
    color: red;
    margin-top: 10px;
}
.register-link {
    margin-top: 15px;
    font-size: 14px;
}
.register-link a {
    color: #ffba00;
    text-decoration: none;
}
.register-link a:hover {
    text-decoration: underline;
}

.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1e1e1e;
    border-bottom: 1px solid #333;
}

/* Gambar */
.logo {
    height: 50px;  /* Sesuaikan tinggi gambar */
    max-width: unset; /* Hilangkan batas max-width dari aturan global */
}

/* Ikon */
.settings-icon {
    font-size: 16px;  /* Sesuaikan ukuran ikon */
    cursor: pointer;
    color: white;
}
.settings-icon:hover {
    color: #ffba00;  /* Warna berubah saat hover */
}

.hidden-text {
    font-family: monospace;
}

.btn-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    background-color: #000;
    border: none;
    transition: background 0.3s ease;
}

.btn-circle i {
    color: white;
}

.btn-circle:hover {
    background-color: #333;
}

.btn-group-custom {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 5px;
}

.btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.btn-label {
    font-size: 14px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
}

.settings-container {
    position: relative;
    display: inline-block;
}

.settings-icon {
    font-size: 16px;
    cursor: pointer;
    color: #fff;
}

.dropdown-menu {
    position: absolute;
    top: 30px;
    right: 0;
    background-color: #333;
    border: 1px solid #000;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100px;
    display: none;
    z-index: 100;
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background-color: #000;
}

.show {
    display: block;
}

.card_crypto {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 1 2px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid #333;
    color: white;
}

.card_crypto .logo {
    margin-bottom: 0px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.card_crypto .info {
    text-align: left;
    margin-left: 10px;
    flex: 1;
}

.card_crypto .info .name {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
}

.card_crypto .info .price {
    font-size: 14px;
    color: #fff;
}

.card_crypto .assets {
    text-align: right;
    margin-left: auto;
} 

.card_crypto .assets .amount {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
}

.card_crypto .assets .total {
    font-size: 12px;
    color: #a0a0a0;
}

.card_link {
    text-decoration: none;
    color: inherit;
    display: block;
}