.otp-popup {
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    margin: auto;
    text-align: center;
}

.otp-popup p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #333;
}

.otp-popup label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #555;
    font-size: 15px;
}

.otp-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 15px 0;
}

.otp-input {
    width: 50px;
    height: 55px;
    font-size: 20px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    transition: all 0.2s ease-in-out;
}

.otp-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.btn {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

.list-box {
    height: 200px; /* Atur tinggi sesuai kebutuhan */
    overflow: hidden;
    position: relative;
}

.list {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.item {
    display: flex;
    padding: 10px;
    align-items: center;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.record_logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.center .h1 {
    font-weight: bold;
}

.center .h2 {
    font-size: 14px;
    color: #666;
}